From 89ee3481d842c16344139dae3910c90ba5bd0d72 Mon Sep 17 00:00:00 2001 From: Matej Habrnal Date: Apr 08 2016 11:15:33 +0000 Subject: New upstream release 2.7.0 Signed-off-by: Matej Habrnal --- diff --git a/0001-wizard-remove-the-code-correcting-Bugzilla-groups.patch b/0001-wizard-remove-the-code-correcting-Bugzilla-groups.patch deleted file mode 100644 index d5c87f8..0000000 --- a/0001-wizard-remove-the-code-correcting-Bugzilla-groups.patch +++ /dev/null @@ -1,121 +0,0 @@ -From 67fc02ca07fd39bd6abb32112bfce57bb7490c79 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Mon, 8 Feb 2016 19:14:21 +0100 -Subject: [PATCH] wizard: remove the code correcting Bugzilla groups - -The code was required for Fedora 20 (bug #1087370). -The code was used for almost two years and it is time to get rid of it. - -Signed-off-by: Jakub Filak ---- - src/gui-wizard-gtk/wizard.c | 74 --------------------------------------------- - 1 file changed, 74 deletions(-) - -diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c -index 1b05216..50047d5 100644 ---- a/src/gui-wizard-gtk/wizard.c -+++ b/src/gui-wizard-gtk/wizard.c -@@ -219,8 +219,6 @@ static const gchar *const page_names[] = - NULL - }; - --#define PRIVATE_TICKET_CB "private_ticket_cb" -- - #define SENSITIVE_DATA_WARN "sensitive_data_warning" - #define SENSITIVE_DATA_WARN_MSG "sensitive_data_warning_message" - #define SENSITIVE_LIST "ls_sensitive_words" -@@ -228,7 +226,6 @@ static const gchar *misc_widgets[] = - { - SENSITIVE_DATA_WARN, - SENSITIVE_LIST, -- PRIVATE_TICKET_CB, - NULL - }; - -@@ -2020,83 +2017,12 @@ static gboolean consume_cmd_output(GIOChannel *source, GIOCondition condition, g - return TRUE; /* "please don't remove this event (yet)" */ - } - --static int ask_replace_old_private_group_name(void) --{ -- char *message = xasprintf(_("Private ticket is requested but the group name 'private' has been deprecated. " -- "We kindly ask you to use 'fedora_contrib_private' group name. " -- "Click Yes button or update the configuration manually. Or click No button, if you really want to use 'private' group.\n\n" -- "If you are not sure what this dialogue means, please trust us and click Yes button.\n\n" -- "Read more about the private bug reports at:\n" -- "https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" -- "https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n")); -- -- char *markup_message = xasprintf(_("Private ticket is requested but the group name private has been deprecated. " -- "We kindly ask you to use fedora_contrib_private group name. " -- "Click Yes button or update the configuration manually. Or click No button, if you really want to use private group.\n\n" -- "If you are not sure what this dialogue means, please trust us and click Yes button.\n\n" -- "Read more about the private bug reports at:\n" -- "" -- "https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" -- "https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n")); -- -- GtkWidget *old_private_group = gtk_message_dialog_new(GTK_WINDOW(g_wnd_assistant), -- GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, -- GTK_MESSAGE_WARNING, -- GTK_BUTTONS_YES_NO, -- message); -- -- gtk_window_set_transient_for(GTK_WINDOW(old_private_group), GTK_WINDOW(g_wnd_assistant)); -- gtk_message_dialog_set_markup(GTK_MESSAGE_DIALOG(old_private_group), -- markup_message); -- free(message); -- free(markup_message); -- -- /* Esc -> No, Enter -> Yes */ -- gtk_dialog_set_default_response(GTK_DIALOG(old_private_group), GTK_RESPONSE_YES); -- -- gint result = gtk_dialog_run(GTK_DIALOG(old_private_group)); -- gtk_widget_destroy(old_private_group); -- -- return result == GTK_RESPONSE_YES; --} -- --/* -- * https://bugzilla.redhat.com/show_bug.cgi?id=1044653 -- */ --static void correct_bz_private_goup_name(const char *event_name) --{ -- if (strcmp("report_Bugzilla", event_name) == 0 && -- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(gtk_builder_get_object(g_builder, PRIVATE_TICKET_CB)))) -- { -- event_config_t *cfg = get_event_config(event_name); -- if (NULL != cfg) -- { -- GList *item = cfg->options; -- for ( ; item != NULL; item = g_list_next(item)) -- { -- event_option_t *opt = item->data; -- if (strcmp("Bugzilla_PrivateGroups", opt->eo_name) == 0 -- && opt->eo_value -- && strcmp(opt->eo_value, "private") == 0 -- && ask_replace_old_private_group_name()) -- { -- free(opt->eo_value); -- opt->eo_value = xstrdup("fedora_contrib_private"); -- } -- } -- } -- } --} -- - static void start_event_run(const char *event_name) - { - /* Start event asynchronously on the dump dir - * (synchronous run would freeze GUI until completion) - */ - -- /* https://bugzilla.redhat.com/show_bug.cgi?id=1044653 */ -- correct_bz_private_goup_name(event_name); -- - struct run_event_state *state = new_run_event_state(); - state->logging_callback = run_event_gtk_logging; - state->error_callback = run_event_gtk_error; --- -2.5.0 - diff --git a/0002-wizard-fix-the-broken-Show-log-widget.patch b/0002-wizard-fix-the-broken-Show-log-widget.patch deleted file mode 100644 index 24e499e..0000000 --- a/0002-wizard-fix-the-broken-Show-log-widget.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 18a1e903c35d72cdb2f436237235d70a3a798cf4 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Mon, 8 Feb 2016 19:18:32 +0100 -Subject: [PATCH] wizard: fix the broken "Show log" widget - -It looks like that GtkScrolledWindow widget is no longer expanded -automatically. - -Fixes: rhbz#1303326 - -Signed-off-by: Jakub Filak ---- - src/gui-wizard-gtk/wizard.glade | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/gui-wizard-gtk/wizard.glade b/src/gui-wizard-gtk/wizard.glade -index 78b012d..e1d2183 100644 ---- a/src/gui-wizard-gtk/wizard.glade -+++ b/src/gui-wizard-gtk/wizard.glade -@@ -678,6 +678,8 @@ - - True - True -+ True -+ True - out - - --- -2.5.0 - diff --git a/0004-Translation-updates.patch b/0004-Translation-updates.patch deleted file mode 100644 index 184b4d1..0000000 --- a/0004-Translation-updates.patch +++ /dev/null @@ -1,110963 +0,0 @@ -From 84c26ce60b67d7761a5c34e9bfb1b42ff15c8ceb Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Thu, 11 Feb 2016 11:59:02 +0100 -Subject: [PATCH] Translation updates - -Signed-off-by: Jakub Filak ---- - po/ar.po | 942 +++++++++++++++++-------------- - po/as.po | 1011 +++++++++++++++++++--------------- - po/bg.po | 951 ++++++++++++++++++-------------- - po/bn_IN.po | 950 ++++++++++++++++++-------------- - po/bs.po | 942 +++++++++++++++++-------------- - po/ca.po | 1286 ++++++++++++++++++++++--------------------- - po/cs.po | 950 ++++++++++++++++++-------------- - po/da.po | 942 +++++++++++++++++-------------- - po/de.po | 1058 +++++++++++++++++++---------------- - po/el.po | 942 +++++++++++++++++-------------- - po/en_GB.po | 946 ++++++++++++++++++-------------- - po/es.po | 1678 +++++++++++++++++++++++++++++++------------------------- - po/eu.po | 944 +++++++++++++++++-------------- - po/fa.po | 942 +++++++++++++++++-------------- - po/fi.po | 950 ++++++++++++++++++-------------- - po/fr.po | 1019 ++++++++++++++++++---------------- - po/gl.po | 952 ++++++++++++++++++-------------- - po/gu.po | 1010 +++++++++++++++++++--------------- - po/he.po | 942 +++++++++++++++++-------------- - po/hi.po | 1013 +++++++++++++++++++--------------- - po/hu.po | 966 ++++++++++++++++++-------------- - po/ia.po | 942 +++++++++++++++++-------------- - po/id.po | 942 +++++++++++++++++-------------- - po/it.po | 1014 ++++++++++++++++++---------------- - po/ja.po | 1005 ++++++++++++++++++--------------- - po/ka.po | 942 +++++++++++++++++-------------- - po/kn.po | 1019 ++++++++++++++++++---------------- - po/ko.po | 948 ++++++++++++++++++-------------- - po/lv.po | 942 +++++++++++++++++-------------- - po/ml.po | 950 ++++++++++++++++++-------------- - po/mr.po | 1012 +++++++++++++++++++--------------- - po/nb.po | 942 +++++++++++++++++-------------- - po/nds.po | 942 +++++++++++++++++-------------- - po/nl.po | 1021 ++++++++++++++++++---------------- - po/or.po | 1017 ++++++++++++++++++---------------- - po/pa.po | 948 ++++++++++++++++++-------------- - po/pl.po | 1355 +++++++++++++++++++++++---------------------- - po/pt.po | 948 ++++++++++++++++++-------------- - po/pt_BR.po | 1083 ++++++++++++++++++++---------------- - po/ru.po | 1659 +++++++++++++++++++++++++++++++------------------------ - po/sk.po | 953 ++++++++++++++++++-------------- - po/sr.po | 942 +++++++++++++++++-------------- - po/sr@latin.po | 942 +++++++++++++++++-------------- - po/sv.po | 1269 +++++++++++++++++++++++------------------- - po/ta.po | 1019 ++++++++++++++++++---------------- - po/te.po | 1015 ++++++++++++++++++---------------- - po/tr.po | 946 ++++++++++++++++++-------------- - po/uk.po | 1090 ++++++++++++++++++------------------ - po/zh_CN.po | 998 ++++++++++++++++++--------------- - po/zh_TW.po | 1002 ++++++++++++++++++--------------- - 50 files changed, 28756 insertions(+), 22387 deletions(-) - -diff --git a/po/ar.po b/po/ar.po -index af4647b..dd77c6a 100644 ---- a/po/ar.po -+++ b/po/ar.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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: 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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -181,46 +181,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -228,118 +225,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -388,7 +392,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -414,7 +418,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -493,60 +497,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(لا وصف)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -555,7 +559,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -563,7 +567,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -575,174 +579,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "يتضمن" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "الاسم:" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "قيمة" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "التفاصيل" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -789,26 +774,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -818,67 +783,67 @@ msgstr "" - "تحليل المشكلة (عند الحاجة) ، لاستعراض البيانات التي تم جمعها ، واختيار " - "المكان الذي يجب أن يبلغ به عن هذه المشكلة, انقر على \"إلى الأمام\" للتنفيذ." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "الحجم:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "إرفاق ملف" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "اعرض السجل" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -887,16 +852,15 @@ msgstr "" - "إذا كنت تريد تقرير المشكلة إلى جهة مختلفة، وجمع معلومات إضافية ، أو توفير " - "وصف أفضل المشكلة ثمتكرار عملية إعداد التقارير ، اضغط على \"إلى الأمام\"." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -922,173 +886,239 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "ن" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "ل" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "قيمة إجبارية ناقصة" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - "بيانات التقفِّي غير كاملة, رجاءا تأكد أنّك توضّح خطوات إعادة تكرار العطل." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "التبليغ غير مفعّل لأن بيانات التقفِّي(backtrace) غير صالحة." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1119,21 +1149,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1214,49 +1257,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "عنوان بجزيلا" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1265,8 +1328,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1275,8 +1338,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1285,8 +1348,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1295,27 +1358,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1344,13 +1386,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1365,7 +1407,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1380,7 +1422,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1415,157 +1457,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1590,7 +1673,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1620,12 +1703,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1634,11 +1717,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1670,34 +1753,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1706,77 +1789,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1789,41 +1876,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1840,7 +1935,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1883,48 +1978,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1932,47 +2027,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2008,39 +2103,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2202,6 +2300,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2267,24 +2381,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2477,65 +2591,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2544,51 +2682,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/as.po b/po/as.po -index 506e829..363cbe7 100644 ---- a/po/as.po -+++ b/po/as.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/as/)\n" - "Language: as\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -180,46 +180,43 @@ msgstr "চলাবলে এটা ঘটনা বাছক:" - msgid "Select a workflow to run: " - msgstr "চলাবলৈ ৱাৰ্কফ্ল বাছক:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0} ৰ পৰা cpio নিষ্কাষণ কৰা" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}' লে লিখিব নোৱাৰি: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "পেকেইজ '{0}' নিষ্কাষণ কৰিব নোৱাৰি" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{1} ৰ পৰা বনোৱা {0} ৰ পৰা নথিপত্ৰসমূহ ক্যাশ কৰা হৈ আছে" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' ৰ পৰা নথিপত্ৰসমূহ নিষ্কাষণ কৰিব নোৱাৰি" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' আতৰাব নোৱাৰি: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "({1} ৰ {0}) {2} ডাউনল'ড কৰা হৈ আছে: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -227,39 +224,39 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "ভঁৰালসমূহত প্ৰয়োজনীয় পেকেইজসমূহ বিচাৰি চোৱা হৈছে" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo নথিপত্ৰসমূহৰ বাবে পেকেইজসমূহ বিচাৰি পোৱা নাযায়" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "ডাউনল'ড কৰিব লগিয়া পেকেইজ: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "{0:.2f}Mb ডাউনল'ড কৰা হৈছে, ইনস্টল'ড আকাৰ: {1:.2f}Mb। আগবাঢ়িব নে?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "ডাউনল'ড ব্যৱহাৰকাৰী দ্বাৰা বাতিল কৰা হৈছে" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -267,7 +264,7 @@ msgstr "" - "সতৰ্কবাৰ্তা: tmp dir '{0}' ত পৰ্যাপ্ত স্থান নাই ({1:.2f}Mb অৱশিষ্ট)। আগবাঢ়িব " - "নে?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -276,38 +273,45 @@ msgstr "" - "সতৰ্কবাৰ্তা: cache dir '{0}' ত পৰ্যাপ্ত স্থান নাই ({1:.2f}Mb অৱশিষ্ট)। " - "আগবাঢ়িব নে?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "পেকেইজ {0} ডাউনল'ড ব্যৰ্থ হল" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "আনপেক কৰা ব্যৰ্থ হল, ডাউনল'ড বাদ দিয়া হৈ আছে..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} আতৰোৱা হৈছে" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -315,37 +319,37 @@ msgstr "" - "মিৰৰ: '{1!s}' ৰ পৰা ডাউনল'ড কৰোতে সমস্যা '{0!s}' দেখা দিলে। পৰৱৰ্তী চেষ্টা " - "কৰা হৈছে" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum আৰম্ভ কৰোতে ত্ৰুটি (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "ত্ৰুটি: cachedir নিৰ্মাণ কৰিব নোৱাৰি, প্ৰস্থান কৰা হৈছে" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "ভঁৰাল '{0!s}' অসামৰ্থবান কৰিব নোৱাৰি: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "অসংমিহলিত ডাউনল'ড অসামৰ্থবান কৰিব নোৱাৰি, আউটপুটত আৰ্টিফেক্ট থাকিব পাৰে!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0} সংস্থাপন কৰিব নোৱাৰি: {1}, অসামৰ্থবান কৰা হৈছে" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "মেটাডাটা উদ্ধাৰ কৰোতে ত্ৰুটি: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "নথিপত্ৰতালিকাসমূহ উদ্ধাৰ কৰোতে ত্ৰুটি: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "ফাইল '{0}' কপি কৰিব নোৱাৰি: {1}" -@@ -394,7 +398,7 @@ msgstr "ঘটনাসমূহ" - msgid "C_onfigure" - msgstr "সংৰূপণ কৰক _o" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "বন্ধ কৰক (_C)" - -@@ -420,7 +424,7 @@ msgstr "গুপ্ত সেৱা উপলব্ধ নহয়, আপোন - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "বাতিল কৰক (_C)" - -@@ -506,7 +510,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "বৈকল্পিক GUI নথিপত্ৰ" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -515,15 +519,15 @@ msgstr "" - "লিখিব পৰা ডাইৰেকটৰিৰ প্ৰয়োজন, কিন্তু '%s' লিখিব নোৱাৰি। ইয়াক '%s' লে লিখি " - "স্থানান্তৰ কৰা তথ্যত কাৰ্য্য কৰিব নে?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "এটা লিখনী নথিপত্ৰ দৰ্শন কৰক/সম্পাদন কৰক" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "সংৰক্ষণ কৰক (_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -531,39 +535,39 @@ msgstr "" - "এই সমস্যাৰ বাবে কোনো সংবাদন লক্ষ্যৰ বিৱৰণ দিয়া হোৱা নাই। /etc/libreport/* ত " - "সংৰূপ নিৰীক্ষণ কৰক" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(প্ৰয়োজন আছে: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(প্ৰয়োজন নাই, তথ্য ইতিমধ্যে উপস্থিত: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(চাবলে/সম্পাদন কৰিবলে ইয়াত ক্লিক কৰক)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(বাইনাৰি নথিপত্ৰ, %llu বাইটসমূহ)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(কোনো বিৱৰণ নাই)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu বাইটসমূহ, %u নথিপত্ৰসমূহ" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "প্ৰক্ৰিয়াকৰণ বাতিল কৰা হৈছে" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -572,7 +576,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -580,7 +584,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -592,76 +596,49 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "প্ৰক্ৰিয়াকৰণ বাধাগ্ৰস্থ হৈছিল কাৰণ সমস্যা সংবাদন কৰা হোৱা নাছিল।" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "প্ৰক্ৰিয়াকৰণ ব্যৰ্থ হল।" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "প্ৰক্ৰিয়াকৰণ সমাপ্ত হ'ল।" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "প্ৰক্ৰিয়াকৰণ সমাপ্ত হ'ল, অনুগ্ৰহ কৰি পৰৱৰ্তী স্তৰত যাওক।" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "'%s' ঘটনাৰ বাবে কোনো প্ৰক্ৰিয়া দিয়া হোৱা নাই" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "প্ৰক্ৰিয়াকৰণ বাধাগ্ৰস্থ হৈছে: লিখিব পৰা ডাইৰেকটৰি নহোৱাকৈ আগবাঢ়িব নোৱাৰি।" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "প্ৰক্ৰিয়া কৰা হৈছে..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "অবৈধ ঘটনা নামৰ বাবে বেকট্ৰেইচ হাৰ নিৰীক্ষণ কৰিব নোৱাৰি" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -670,99 +647,107 @@ msgstr "" - "সম্ভাব্য সংবেদনশীল তথ্য পঠিয়াবলে ঘটনা '%s' ৰ অনুমতিৰ প্ৰয়োজন।⏎\n" - "আপুনি আগবাঢ়িব বিচাৰে নে?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "এই সমস্যা সংবাদন হব নালাগে (ই সম্ভবত এটা জ্ঞাত সমস্যা)। %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "খোলক (_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' এটা সাধাৰণ নথিপত্ৰ নহয়" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "আপুনি এটা নথিপত্ৰক নিজৰ মাজত কপি কৰিব বিচাৰিছে" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' কপি কৰিব নোৱাৰি: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "বস্তু '%s' ইতিমধ্যৈ অস্তিত্ববান আৰু সলনি কৰিব নোৱাৰি" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "অন্তৰ্ভুক্ত কৰক" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "নাম" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "মান" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "সমস্যা বিৱৰণ" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "এই সমস্যা কেনেকৈ সংবাদন কৰা হ'ব বাছক" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "অতিৰিক্ত তথ্য প্ৰদান কৰক" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "তথ্য পুনৰদৰ্শন কৰক" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "তথ্যক সংবাদলে সুনিশ্চিত কৰক" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "প্ৰক্ৰিয়া কৰা হৈছে" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "প্ৰক্ৰিয়াকৰণ সমাপ্ত হ'ল" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "ৰখাওক (_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "বিশ্লেষণৰ বাবে আপল'ড কৰক" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "আগলৈ (_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "বিৱৰণ" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "সংবাদলৈ অভিগম প্ৰতিৰোধ কৰক" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -813,28 +798,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "সংবাদলৈ অভিগম প্ৰতিৰোধ কৰক" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Fedora Contrib দল সদস্যসকলৰ বাহিৰে প্ৰতিৰোধিত অভিগমৰ সৈতে কোনেও সংবাদ চাব " --"নোৱাৰিব (আপুনিও নোৱাৰিব)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "সীমিত অভিগমৰ সৈতে সংবাদসমূহৰ বিষয়ে অধিক পঢ়ক" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -845,7 +808,7 @@ msgstr "" - "পুনৰদৰ্শন কৰিবলে, আৰু বাছিবলে কত সমস্যাটো সংবাদন কৰা হব। আগবাঢ়িবলে 'আগলৈ' " - "ক্লিক কৰক।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -855,11 +818,11 @@ msgstr "" - "সমস্যা বিশ্লেষণ কৰিবলে কোনো অতিৰিক্ত মন্তব্য উপলব্ধ আছে নেকি? যদি সম্ভব " - "অনুগ্ৰহ কৰি ইংৰাজী ব্যৱহাৰ কৰিব।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "আপুনি আগবঢ়াৰ আগত কি দৰে পূৰ্ণ কৰিব লাগিব..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -867,31 +830,31 @@ msgstr "" - "আপোনাৰ উপাদানসমূহ ব্যক্তিগত নহয়। তেওলোকক ৰাজহুৱা ভাৱে দৃশ্যমান সমস্যা " - "আবেদনপত্ৰত অন্তৰভুক্ত কৰা হব পাৰে।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "যদি আপুনি নাযানে ইয়াক কেনেকৈ বিৱৰণ দিব, আপুনি কৰিব পাৰে" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "এটা স্ক্ৰিনকাস্ট যোগ কৰক" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "মই এই সমস্যাৰ কাৰণ নাজানো" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "আকাৰ:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "এটা নথিপত্ৰ সংলঘ্ন কৰক" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "মই তথ্য পুনৰদৰ্শন কৰিলো আৰু ইয়াক জমা দিয়াত সন্মত (_a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -901,19 +864,19 @@ msgstr "" - "ব্যক্তিগত তথ্য (যেনে ব্যৱহাৰকাৰীনাম আৰু পাছৱাৰ্ডসমূহ)। বেকট্ৰেইচ, কমান্ড " - "শাৰী, পৰিৱেশ চলকসমূহ হল পৰিক্ষণৰ বাবে প্ৰয়োজনীয় সাধাৰণ বস্তুবোৰ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "প্ৰক্ৰিয়াকৰণ এতিয়াও আৰম্ভ হোৱা নাই" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "লগ দেখুৱাওক" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "সংবাদন সম্পূৰ্ণ হৈছে। আপুনি এই উইন্ডো বন্ধ কৰিব পাৰিব।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -923,16 +886,15 @@ msgstr "" - "সংগ্ৰহ কৰক, অথবা এটা উন্নত সমস্যা বিৱৰণ প্ৰদান কৰক আৰু সংবাদন প্ৰক্ৰিয়া পুনৰ " - "পৰিৱেশন কৰক, 'আগলৈ' দবাওক।" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "ভাৰবৌচ হওক" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "সমস্যা ডাইৰেকটৰি" - -@@ -958,78 +920,119 @@ msgstr "এটা সমস্যা ডাইৰেকটৰি নহয়" - msgid "Can't delete '%s': %s" - msgstr "'%s' ক মচিব নোৱাৰি: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "প্ৰয়োজনীয় বস্তু নাই: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid মান বৈধ নহয়: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "প্ৰয়োজনীয় বস্তু নাই: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "আপল'ড কৰা হল: %llu kbytes -ৰ %llu" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s -ক %s -লে পঠোৱা হৈ আছে" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "সফলভাৱে %s -ক %s -লে পঠোৱা হল" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "বাধ্যতামুলক মান সন্ধানহীন" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "অবৈধ utf8 আখৰ '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "অবৈধ নম্বৰ '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "অবৈধ বুলিয়ান মান '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "অসমৰ্থিত বিকল্প ধৰণ" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1038,11 +1041,11 @@ msgstr "" - "সমস্যাক এটা অবৈধ তথ্যৰ বাবে সংবাদন কৰিব নোৱাৰি। '%s' ফাইলে এটা সংখ্যা " - "অন্তৰ্ভুক্ত নকৰে।" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "অনুগ্ৰহ কৰি এই সমস্যাক ABRT প্ৰকল্প উন্নয়নকাৰীসকললৈ সংবাদন কৰক।" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1050,15 +1053,15 @@ msgstr "" - "backtrace টো অসমপূৰ্ণ, অনুগ্ৰহ কৰি নিশ্চিত কৰক পুনৰ উৎপাদন কৰিবলে আপুনি " - "পৰ্যায়সমূহৰ যোগান দিছে।" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "বেকট্ৰেইচে সম্ভবত উন্নয়নকাৰীক বাগ বিশ্লেষণ কৰাত সহায় কৰিব নোৱাৰে।" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "জনোৱা প্ৰক্ৰিয়া অসামৰ্থবান কাৰণ backtrace ব্যৱহাৰযোগ্য নহয়।" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1067,11 +1070,26 @@ msgstr "" - "অনুগ্ৰহ কৰি debuginfo ক কমান্ড: \"debuginfo-install %s\" ব্যৱহাৰ কৰি\n" - "হস্তচালিতভাৱে ইনস্টল কৰাৰ চেষ্টা কৰক আৰু পুনৰ চেষ্টা কৰক।" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "এটা সঠিক debuginfo সম্ভবত সন্ধানহিন অথবা কেন্দ্ৰডাম্প ক্ষতিগ্ৰস্থ।" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1080,60 +1098,70 @@ msgstr "আপোনাৰ সমস্যা সম্ভবত %s দ্বা - "⏎\n" - "%s⏎\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "আপোনাৰ সমস্যা নিম্নলিখিতৰ এটা দ্বাৰা কৰা হৈছে যেন লাগিছে:⏎\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "curl ৰ সৈতে চাৰ্ভাৰ '%s' লৈ uReport আপল'ড কৰিবলে ব্যৰ্থ: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' অস্তিত্ববান নহয় (চাৰ্ভাৰৰ পৰা ত্ৰুটি 404 প্ৰাপ্ত হৈছে)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - "'%s' ত চাৰ্ভাৰে এটা অভ্যন্তৰীক ত্ৰুটি দেখা দিছে (ত্ৰুটি 500 প্ৰাপ্ত হৈছে)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - "'%s' ত চাৰ্ভাৰে অনুৰোধ নিয়ন্ত্ৰণ কৰিব নোৱাৰে (ত্ৰুটি 503 প্ৰাপ্ত হৈছে)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s' ৰ পৰা অপ্ৰত্যাশিত প্ৰতিক্ৰিয়া: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "'%s' ত ureport চাৰ্ভাৰৰ পৰা প্ৰতিক্ৰিয়া বিশ্লেষণ কৰিবলে অক্ষম" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' ৰ পৰা প্ৰতিক্ৰিয়াৰ অবৈধ বিন্যাস" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "'%s' ৰ পৰা প্ৰতিক্ৰিয়াত ধৰণৰ অমিল দেখা গৈছে" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "সমস্যা জমা দিবলে ব্যৰ্থ" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "'%s' ত চাৰ্ভাৰে এটা ত্ৰুটিৰ সৈতে প্ৰতিক্ৰিয়া কৰিছে: '%s'" -@@ -1164,21 +1192,34 @@ msgstr "বেকট্ৰেইচ বিশ্লেষণ কৰিব নো - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "স্টেকট্ৰেইচৰ বিৱৰণ সৃজন কৰিব নোৱাৰি (কোনো স্খলন থ্ৰেড নাই?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' ক সংকেত %u দ্বাৰা kill কৰা হৈছিল)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' সফলভাৱে সম্পূৰ্ণ হল)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' এ %u ৰ সৈতে প্ৰস্থান কৰিছে)\n" -@@ -1261,32 +1302,56 @@ msgid "Bugzilla account password" - msgstr "Bugzilla একাওন্ট পাছৱাৰ্ড" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "অভিগম সীমিত কৰক" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"কেৱল ধাৰ্য্যত দলসমূহৰ ব্যৱহাৰকাৰীসকলক দৰ্শন কৰাৰ অনুমতি দি সৃষ্টি কৰা " -+"bugzilla টিকেটলৈ অভিগম সীমিত কৰক (অধিক বিৱৰণৰ বাবে উন্নত সংহতিসমূহ চাওক)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "দলসমূহ" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"ধাৰ্য্যত দলসমূহ <a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-" -+"private-bugzilla-tickets\">?</a> লৈ অভিগম সীমিত কৰক" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla চাৰ্ভাৰৰ ঠিকনা" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL সতাসত্য নিৰূপণ কৰক" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL কি বৈধতা নিৰীক্ষণ কৰক" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla উৎপাদন" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1294,11 +1359,11 @@ msgstr "" - "ইয়াক কেৱল তেতিয়াহে ধাৰ্য্য কৰক যদি আপোনাৰ /etc/os-release ত ধাৰ্য্যত উৎপাদনৰ " - "পৰা পৃথক উৎপাদনৰ প্ৰয়োজন" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla উৎপাদন সংস্কৰণ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1306,8 +1371,8 @@ msgstr "" - "ইয়াক কেৱল তেতিয়াহে ধাৰ্য্য কৰক যদি আপোনাৰ /etc/os-release ত ধাৰ্য্যতকৈ ভিন্ন " - "উৎপাদন সংস্কৰণৰ প্ৰয়োজন" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1316,8 +1381,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP প্ৰক্সি" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1326,8 +1391,8 @@ msgstr "HTTP প্ৰক্সি" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTP ৰ বাবে ব্যৱহাৰ কৰিবলে প্ৰক্সি চাৰ্ভাৰ সংহতি কৰে" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1336,8 +1401,8 @@ msgstr "HTTP ৰ বাবে ব্যৱহাৰ কৰিবলে প্ৰ - msgid "HTTPS Proxy" - msgstr "HTTPS প্ৰক্সি" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1346,31 +1411,6 @@ msgstr "HTTPS প্ৰক্সি" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS ৰ বাবে ব্যৱহাৰ কৰিবলে প্ৰক্সি চাৰ্ভাৰ সংহতি কৰে" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "অভিগম সীমিত কৰক" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"কেৱল ধাৰ্য্যত দলসমূহৰ ব্যৱহাৰকাৰীসকলক দৰ্শন কৰাৰ অনুমতি দি সৃষ্টি কৰা " --"bugzilla টিকেটলৈ অভিগম সীমিত কৰক (অধিক বিৱৰণৰ বাবে উন্নত সংহতিসমূহ চাওক)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "দলসমূহ" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"ধাৰ্য্যত দলসমূহ <a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-" --"private-bugzilla-tickets\">?</a> লৈ অভিগম সীমিত কৰক" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1411,13 +1451,13 @@ msgstr "" - "হৈছে, env চলক আৰু সংৰূপক উপেক্ষা কৰি" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "লগিন নহোৱাকৈ আগবাঢ়িব নোৱাৰি" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "পাছৱাৰ্ড নহোৱাকৈ আগবাঢ়িব নোৱাৰি" -@@ -1429,10 +1469,10 @@ msgstr "%s -ত Bugzilla লে লগিন কৰা হৈ আছে" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "অবৈধ পাছৱাৰ্ড অথবা লগিন। অনুগ্ৰহ কৰি আপোনাৰ Bugzilla লগিন সুমুৱাওক:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "অবৈধ পাছৱাৰ্ড অথবা লগিন। অনুগ্ৰহ কৰি '%s' ৰ বাবে পাছৱাৰ্ড সুমুৱাওক:" -@@ -1447,7 +1487,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1481,115 +1521,89 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"সমস্যাক Bugzilla লৈ সংবাদন কৰে।\n" --"\n" --"সঁজুলিয়ে DIR পঢ়ে। তাৰ পিছত ই Bugzilla লৈ লগিন কৰে আৰু 'Whiteboard' ত একেটা " --"abrt_hash:HEXSTRING ৰ সৈতে এটা বাগ সন্ধান কৰাৰ চেষ্টা কৰে।\n" --"\n" --"যদি এনেকুৱা কোনো বাগ পোৱা যায়, তেন্তে এটা নতুন বাগ সৃষ্টি কৰা হয়। DIR ৰ " --"উপাদানসমূহক ধৰণ আৰু আকাৰৰ ওপৰত নিৰ্ভৰ কৰি, বাগ বিৱৰণ অংশ অথবা এটাচমেন্ট ৰূপে " --"সংৰক্ষণ কৰা হয়।\n" --"\n" --"নহলে, যদি এই ধৰণৰ কোনো বাগ পোৱা যা আৰু CLOSED DUPLICATE ৰূপে চিহ্নিত হয়, " --"সঁজুলিয়ে প্ৰতিলিপি বাগসমূহৰ শৃংখল সন্ধান কৰি চায় যেতিয়ালৈকে non-DUPLICATE " --"বাগ পোৱা নাযায়।\n" --"সঁজুলিয়ে প্ৰাপ্ত বাগত এটা নতুন মন্তব্য যোগ কৰে।\n" --"\n" --"নতুন অথবা পৰিবৰ্তিত বাগলৈ URL ক stdout লৈ প্ৰিন্ট কৰা হয় আৰু 'reported_to' " --"উপাদানত ৰেকৰ্ড কৰা হয়।\n" --"\n" --"বিকল্প -t এ FILEs ক Bugzilla ছাইটত ইতিমধ্যে সৃষ্টি কৰা বাগলৈ আপল'ড কৰে।\n" --"বাগ ID ক -d DIR দ্বাৰা ধাৰ্য্য কৰা ডাইৰেকটৰিৰ পৰা উদ্ধাৰ কৰা হয়।\n" --"যদি DIR ত থকা সমস্যা তথ্যক Bugzilla লৈ সংবাদন কৰা হোৱা নাছিল, আপল'ড ব্যৰ্থ " --"হব।\n" --"\n" --"বিকল্প -tID এ FILEs Bugzilla ছাইটত ধাৰ্য্যত ID সৈতে বাগলৈ আপল'ড কৰে।\n" --"\n" --"-d DIR উপেক্ষা কৰা হয়।\n" --"\n" --"বিকল্প -w এ bugzilla ব্যৱহাৰকাৰীক বাগৰ CC তালিকালৈ যোগ কৰে।\n" --"\n" --"বিকল্প -r এ reporter_to element ৰ পৰা সৰ্বশেষ url সংহতি কৰে যাক URL ফিল্ডলৈ " --"TRACKER_NAME ৰ সৈতে উপসৰ্গ কৰা হয়।\n" --" এই বিকল্প এটা নতুন বাগ ফাইল কৰোতে প্ৰয়োগ কৰা হয়। অবিকল্পিত মান হল 'ABRT " --"Server'\n" --"\n" --"If not specified, CONFFILE defaults to " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "সংৰূপ নথিপত্ৰ (কেইবাবাৰো দিব পৰা যাব)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "আৰম্ভণি মন্তব্যৰ বাবে ফৰমেটিং ফাইল" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "প্ৰতিলিপিসমূহৰ বাবে ফৰমেটিং ফাইল" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILEসমূহক এটাচ কৰক [এই ID -ৰ সৈতে বাগলে]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "এটা বাগ সৃষ্টি কৰোতে, বাইনাৰি নথিপত্ৰসমূহ সংলঘ্ন কৰিব" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "সংবাদন বলৱৎ কৰক যদিও এই সমস্যা ইতিমধ্যে সংবাদিত" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "bugzilla ব্যৱহাৰকাৰীক CC তালিকাত যোগ কৰক [বাগৰ এই IDৰ সৈতে]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "DUPHASH দিয়া BUG_ID প্ৰিন্ট কৰক" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr " 'reported_to' ৰ পৰা এটা অতিৰিক্ত URL ৰ বাবে বাগ ট্ৰেকাৰৰ এটা নাম" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "অভিগম কেৱল এই দলৰ বাবে ৰাখক" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "ডিবাগ কৰক" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "bugzilla ত সদৃশ সমস্যাসমূহৰ বাবে সন্ধান কৰা হৈছে" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." - msgstr "" --"লগিন সংৰূপ দ্বাৰা প্ৰদান কৰা নহয়। অনুগ্ৰহ কৰি আপোনাৰ Bugzilla লগিন সুমুৱাওক:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1598,7 +1612,7 @@ msgstr "" - "পাছৱাৰ্ড সংৰূপ দ্বাৰা প্ৰদান কৰা নহয়। অনুগ্ৰহ কৰি '%s' ৰ বাবে পাছৱাৰ্ড " - "সুমুৱাওক:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1606,7 +1620,7 @@ msgstr "" - "Bugzilla ID প্ৰাপ্ত কৰিব নোৱাৰি কাৰণ এই সমস্যাক এতিয়াও Bugzilla লৈ সংবাদন " - "কৰা হোৱা নাই।" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1615,75 +1629,97 @@ msgstr "" - "এই সমস্যাক Bugzilla '%s' লৈ সংবাদন কৰা হৈছে যি সংৰূপিত Bugzilla '%s' ৰ পৰা " - "পৃথক।" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Bugzilla '%s' লৈ ক্ষতিগ্ৰস্থ url।" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID '%s' ব্যৱহাৰ কৰা হৈছে" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "লগ আউট কৰা হৈ আছে" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "সমস্যা তথ্যৰ পৰা Bugzilla উৎপাদন নিৰ্ধাৰণ কৰিব নোৱাৰি।" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "প্ৰতিলিপিসমূহৰ বাবে নিৰীক্ষণ কৰা হৈ আছে" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "এটা নতুন বাগ সৃষ্টি কৰা হৈ আছে" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "এটা নতুন বাগ সৃষ্টি কৰিবলৈ ব্যৰ্থ।" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "বাগ %i লৈ বহিৰ্তম URL যোগ কৰা হৈছে" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "বাগ %i লে এটাচমেন্টসমূহ যোগ কৰা" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "বাগ ইতিমধ্যে সংবাদিত: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s ক CC তালিকালে যোগ কৰা হৈছে" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "বাগ %d লে এটা নতুন মন্তব্য যোগ কৰা হৈ আছে" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "উন্নত বেকট্ৰেইচ সংলঘ্ন কৰা" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "বাগ ইতিহাসত একেটা মন্তব্য পোৱা গল, এটা নতুন যোগ কৰা হোৱা নাই" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "অৱস্থা: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1718,7 +1754,7 @@ msgstr "" - "প্ৰাচল $KerneloopsReporter_SubmitURL ৰে অভাৰৰাইড কৰিব পাৰি।" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "সংৰূপ নথিপত্ৰ" - -@@ -1750,12 +1786,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "এটা ই-মেইল পঠোৱা হৈ আছে..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "ইমেইল পঠোৱা হৈছিল: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1769,11 +1805,11 @@ msgstr "" - "\n" - "যদি ধাৰ্য্যত নাথাকে, CONFFILE অবিকল্পিত হয় " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "সংৰূপ নথিপত্ৰ" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "কেৱল অধিসূচীত কৰক (সংবাদক পঠোৱা হৈছে বুলি চিহ্নিত নকৰিব)" - -@@ -1809,34 +1845,34 @@ msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - "'%s' ক লিখাৰ বাবে খোলিব নোৱাৰি। অনুগ্ৰহ কৰি অন্য নথিপত্ৰ নিৰ্বাচন কৰক:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "সংবাদ %s -ত সংযোজন কৰা হৈছিল" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "সংবাদ %s -ত সংৰক্ষণ কৰা হৈছিল" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "চাৰ্ভাৰ এটা ত্ৰুটিৰ সৈতে প্ৰতিক্ৰিয়া কৰিলে: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "আপুনি তথাপিও এটা RHTSupport টিকেট সৃষ্টি কৰিব বিচাৰে নে?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1845,79 +1881,83 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILEসমূহক আপল'ড কৰে [এই ID -ৰ লগত কেইচ কৰিবলে]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "লগিন সংৰূপ দ্বাৰা প্ৰদান কৰা হোৱা নাই। অনুগ্ৰহ কৰি আপোনাৰ RHTS লগিন প্ৰদান " - "কৰক:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' -ক কেইচ '%s' -লে এটাচ কৰা হৈ আছে" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "চিহ্নিত স্থানত এটা অস্থায়ী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "তথ্য সংকোচন কৰা হৈ আছে" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "চিহ্নিত স্থানত এটা অস্থায়ী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "চিহ্নিত স্থানত অস্থায়ী ফাইল সৃষ্টি কৰিব নোৱাৰি" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "সংকেতৰ বাবে নিৰীক্ষণ কৰা হৈছে" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "এটা নতুন কেইচ সৃষ্টি কৰা হৈছে" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "সমস্যা তথ্যৰ পৰা RH সমৰ্থন উৎপাদন নিৰ্ধাৰণ কৰিব নোৱাৰি।" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "কেইচ '%s' লৈ মন্তব্য যোগ কৰা হৈছে" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "কেইচ '%s' লৈ সমস্যা তথ্য সংলগ্ন কৰা হৈছে" -@@ -1930,45 +1970,49 @@ msgstr "তথ্যচিত্ৰ যি প্ৰাসংগিক হব - msgid "Updates which possibly help: " - msgstr "আপডেইটসমূহ যি সম্ভবত সহায়ক হব পাৰে: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "URL ৰ অবিহনে আগবাঢ়িব নোৱাৰি" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "আৰ্কাইভ সৃষ্টি কৰা হল: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"সমস্যা DIR ৰ সংকোচিত টাৰবল URL লৈ আপল'ড কৰে।\n" --"যদি URL ধাৰ্য্য কৰা হোৱা নাই, চিহ্নিত স্থানত টাৰবল সৃষ্টি কৰে" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "ভিত্তি URL যলে আপল'ড কৰা হব" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1985,7 +2029,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2028,48 +2072,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2077,47 +2121,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2153,39 +2197,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2350,6 +2397,22 @@ msgstr "FTP প্ৰক্সি" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP ৰ বাবে ব্যৱহাৰ কৰিবলে প্ৰক্সি চাৰ্ভাৰ সংহতি কৰে" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2415,7 +2478,7 @@ msgstr "বাগ %i CLOSED, কিন্তু ইয়াৰ কোনো RESOLU - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "বাগ %i DUPLICATE হিচাপে CLOSED, কিন্তু ইয়াৰ কোনো DUP_ID নাই" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2425,17 +2488,17 @@ msgstr "" - "হোৱা নাছিল, অধিক তথ্যৰ বাবে অনুগ্ৰহ কৰি https://github.com/abrt/abrt/wiki/" - "FAQ#creating-private-bugzilla-tickets চাওক" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "নতুন বাগ আইডি: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla -এ বাগ %d -ৰ উপধায়ক বিচাৰি নাপালে" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) return মানত সদস্য 'bugs' নাছিল" - -@@ -2628,39 +2691,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "চাৰ্ভাৰ URL ধাৰ্য্য কৰক" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "ureport চাৰ্ভাৰলৈ অসুৰক্ষিত সংযোগৰ অনুমতি দিয়ক" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "ক্লাএন্ট প্ৰমাণীকৰণ ব্যৱহাৰ কৰক" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "সংলঘ্ন কৰিবলৈ uReport ৰ bthash (-A ৰ সৈতে দন্দ কৰে)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "reported_to ৰ পৰা এটা bthash ৰ সৈতে সংলঘ্ন কৰক (-a ৰ সৈতে দন্দ কৰে)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "পৰিচয়ৰ ইমেইল ঠিকনা (-a|-A ৰ প্ৰয়োজন, -E ৰ সৈতে দন্দ কৰে)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2668,29 +2731,53 @@ msgstr "" - "পৰিৱেশ অথবা সংৰূপ ফাইলৰ পৰা ই-মেইল ঠিকনা (-a|-A ৰ প্ৰয়োজন, -e ৰ সৈতে দন্দ " - "কৰে)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ বাগ সংলঘ্ন কৰক (-a|-A ৰ প্ৰয়োজন, -B ৰ সৈতে দন্দ কৰে)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "reported_to ৰ পৰা সৰ্বশেষ RHBZ বাগ সংলঘ্ন কৰক (-a|-A ৰ প্ৰয়োজন, -b ৰ সৈতে " - "দন্দ কৰে)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2699,33 +2786,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "সমস্যাৰ এটা এটা uReport ধাৰ্য্যত নাই।" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "এই সমস্যা Bugzilla ত সংবাদন কৰা হোৱা নাই।" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "bugzilla URL '%s' ত বাগ ID বিচাৰি পোৱা নগল" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "bugzilla URL '%s' ৰ পৰা বাগ ID বিশ্লেষণ কৰিবলে অক্ষম" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2733,19 +2830,19 @@ msgstr "" - "পৰিৱেশ চলক 'uReport_ContactEmail' অথবা সংৰূপ বিকল্প 'ContactEmail' সংহতি কৰা " - "হোৱা নাই" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "আপুনি সংলগ্ন কৰিবলে uReport ৰ bthash ধাৰ্য্য কৰিব লাগিব।" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "এটা ৰিক্ত uReport আপল'ড কৰা হোৱা নাই" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "এই সমস্যাক ইতিমধ্যে সংবাদন কৰা হৈছে।" - -diff --git a/po/bg.po b/po/bg.po -index 8765424..1306082 100644 ---- a/po/bg.po -+++ b/po/bg.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/bg/)\n" - "Language: bg\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -180,46 +180,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Извличане на cpio от {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Не мога да пиша в '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Не мога да извлека пакет '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Кешване на файлове от {0} създадени от {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Не мога да извлека файлове от '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Не мога да премахна '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Сваляне на ({0} от {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -227,120 +224,127 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Търсене на необходими пакети в хранилищата" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Не мога да намеря пакети за {0} debuginfo файлове" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Пакети за сваляне: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Сваляне на {0:.2f}Mb, инсталиран обем: {1:.2f}Mb. Да продължа ли?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Свалянето е прекратено от потребителя" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Свалянето на пакета {0} не успя" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Разопаковането не успя, прекратяване на свалянето..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Премахване {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - "Възникна проблем '{0!s}' при сваляне от сървъра: '{1!s}'. Пробвам следващия" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Грешка при инициализиране на yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Не мога да забраня хранилище '{0!s}': {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Не мога да забраня асинхронното сваляне. Изходът може да съдържа артефакти!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Не мога да задам {0}: {1}, забраняване" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Грешка при извличане на метаданни: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Грешка при извличане на списъци с файлове: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -389,7 +393,7 @@ msgstr "Събития" - msgid "C_onfigure" - msgstr "К_онфигуриране" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -416,7 +420,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -504,7 +508,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Алтернативен GUI файл" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -513,15 +517,15 @@ msgstr "" - "Нужна е директория за запис, но в '%s' не може да се пише. Да я преместя ли " - "в '%s' и да оперирам с преместените данни?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Преглед/редакция на текстов файл" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -529,39 +533,39 @@ msgstr "" - "Не са дефинирани цели за рапортуване за този проблем. Проверете " - "конфигурацията в /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(изисквани: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(не е необходимо, данните вече съществуват: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(цъкнете тук за преглед/редакция)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(двоичен файл, %llu байта)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(няма описание)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu байта, %u файла" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -570,7 +574,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -578,7 +582,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -590,78 +594,51 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Обработката се провали." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Обработката завърши." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Обработката завърши, моля, преминете към следващата стъпка." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Не е дефинирана обработка на събитие '%s'" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Обработката е прекъсната: не мога да продължа без записваема директория." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Обработка..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Не мога да проверя рейтинга на обратното проследяване поради невалидно име " - "на събитието" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -670,100 +647,108 @@ msgstr "" - "Събитието '%s' изисква позволение за да изпрати вероятно лични данни.\n" - "Искате ли да продължите?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Проблемът не би трябвало да се докладва (като че ли е известен вече). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' не е нормален файл" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Опитвате се да копирате файл в самия него" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Не мога да копирам '%s': %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "'%s' вече съществува и не може да бъде променено" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Включи" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Име" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Стойност" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Описание на проблема" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Изберете как да докладваме този проблем" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Предоставяне на допълнителна информация" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Преглед на данните" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Потвърдете данните в доклада" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Обработка" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Обработката завърши." - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Детайли" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -814,26 +799,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -844,7 +809,7 @@ msgstr "" - "да прегледате събраните данни и да изберете къде би трябвало да бъде " - "докладван проблема. Цъкнете 'Напред' за да започнете." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -854,11 +819,11 @@ msgstr "" - "възстановка? Някакви допълнителни коментари, полезни за диагностицирането? " - "Моля, ползвайте Английски, ако е възможно." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Вие трябва да попълните описанието преди да продължите..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -866,31 +831,31 @@ msgstr "" - "Вашите коментари не са поверителни. Те може да бъдат включени в " - "публично видими доклади за проблема." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Ако не знаете как да го опишете, Вие можете" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Не знам кое причини този проблем" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Големина:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Прикрепи файл" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Прегледах данните и съм съгл_асен да бъдат предоставени" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -901,19 +866,19 @@ msgstr "" - "проследяване, командния ред, променливите от обкръжението, са типичните " - "места, които трябва да прегледате." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Обработката все още не е започнала" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Покажи дневник" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Докладването завърши. Сега можете да затворите този прозорец." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -923,16 +888,15 @@ msgstr "" - "информация, или да предоставите по-добро описание на проблема и да повторите " - "процеса, цъкнете върху 'Напред'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Бъди подробен" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Директория с проблеми" - -@@ -958,89 +922,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "Д" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "Н" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Липсва необходим елемент: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "невалидна uid стойност: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Липсва необходим елемент: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Качени: %llu от %llu kбайта" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Изпращане на %s към %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Успешно е изпратен %s към %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Липсва задължителна стойност" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Невалиден utf8 знак '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Невалидно число '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Невалидна двоична стойност '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Неподдържан тип опция" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Мола, докладвайте този проблем на разработчиците в проекта ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1048,16 +1053,16 @@ msgstr "" - "Обратното проследяване е непълно, моля, проверете дали сте дали стъпки за " - "възстановка." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - "Докладването е забранено понеже обратното проследяване е неизползваемо." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1066,69 +1071,94 @@ msgstr "" - "Моля, опитайте ръчно да инсталирате debuginfo чрез командата: \"debuginfo-" - "install %s\" и опитайте отново." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "Вероятно липсва подходящо debuginfo или coredump е повредено." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1159,21 +1189,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1256,49 +1299,69 @@ msgid "Bugzilla account password" - msgstr "Парола за Bugzilla акаунта" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Адрес на Bugzilla сървъра" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Провери SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Проверете валидността на SSL ключа" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1307,8 +1370,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1317,8 +1380,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1327,8 +1390,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1337,27 +1400,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1396,13 +1438,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Не може да се продължи без влизане" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Не може да се продължи без парола" -@@ -1415,10 +1457,9 @@ msgstr "Влизане в Bugzilla на %s" - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"Невалидна парола или влизане. Моля, въведете Вашите Bugzilla данни за влизане:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "Невалидна парола или влизане. Моля, въведете парола за '%s':" -@@ -1433,7 +1474,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1468,69 +1509,88 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Конфигурационен файл (може да е даден много пъти)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Прикрепя FILEs [към бъг с това ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Когато създаваш бъг, прилагай и двоичните файлове" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Принудително докладване, даже и ако този проблем вече е докладван" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Отпечатва BUG_ID имащ дадения DUPHASH" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Ограничи достъпа само до тази група" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1538,7 +1598,7 @@ msgid "" - msgstr "" - "Паролата не е зададена от конфигурацията. Моля, въведете паролата за '%s':" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1546,82 +1606,104 @@ msgstr "" - "Не мога да взема Bugzilla ID, понеже този проблем все още не е бил докладван " - "в Bugzilla." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Използвам Bugzilla ID '%s'" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Излизане" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Проверка за дубликати" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Създаване на нов бъг" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Добавяне като приложени към бъг %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Грешката вече е докладвана: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "Добавям %s към CC списъка" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Добавяне на нов коментар към бъг %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Прилагане на по-добро проследяване" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "Намерен е същия коментар в бъг историята, няма да добавям нов" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Статус: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1656,7 +1738,7 @@ msgstr "" - "Параметърът може да бъде отменен чрез $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Конфигурационен файл" - -@@ -1686,12 +1768,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Изпращане на имейл..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Email беше изпратен до: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1705,11 +1787,11 @@ msgstr "" - "\n" - "Ако не е зададено, CONFFILE по подразбиране е " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Конфиг файл" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Само известяване (Не маркирай рапорта като изпратен)" - -@@ -1744,34 +1826,34 @@ msgstr "Прекратено от потребителя." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Не мога да отворя '%s' за запис. Моля, посочете друг файл:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Докладът беше добавен към %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Докладът беше записан в %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Искате ли все още да създадете RHTSupport билет?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1780,77 +1862,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Качване на FILEs [към случая с това ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Прикрепяне на '%s' към случай '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Компресиране на данни" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1863,41 +1949,49 @@ msgstr "Документация, която може да е свързана - msgid "Updates which possibly help: " - msgstr "Обновления, които може да помогнат: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Архивът е създаден: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Основен URL, към който да се качва" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1914,7 +2008,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1957,48 +2051,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2006,47 +2100,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2082,39 +2176,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2278,6 +2375,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2343,24 +2456,24 @@ msgstr "Бъг %i е ЗАТВОРЕН, но няма РЕШЕНИЕ" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Бъг %i е ЗАТВОРЕН като ДУБЛИРАЩ се, но в него липсва DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "ID на новия бъг: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla не можа да намери parent на бъг %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2553,65 +2666,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Задаване URL на сървър" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Позволи несигурна връзка към ureport сървър" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2620,51 +2757,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "На този проблем не е присвоен uReport." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Този проблем не е докладван в Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Не мога да намеря ID на бъга в bugzilla URL '%s'" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Не мога да извлека ID на бъга от bugzilla URL '%s'" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Трябва да зададете bthash на uReport-а за прикрепяне." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Този проблем вече е докладван." - -diff --git a/po/bn_IN.po b/po/bn_IN.po -index ace9807..e743444 100644 ---- a/po/bn_IN.po -+++ b/po/bn_IN.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "libreport/language/bn_IN/)\n" - "Language: bn-IN\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -176,46 +176,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0} থেকে cpio প্রাপ্ত করা হচ্ছে" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}'-এ লিখতে ব্যর্থ: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "'{0}' প্যাকেজ প্রাপ্ত করতে ব্যর্থ" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{0} থেকে ফাইল ক্যাশে করা হচ্ছে, এইগুলি {1} থকে প্রস্তুত করা হয়েছে" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' থেকে ফাইল প্রাপ্ত করতে ব্যর্থ" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' সরাতে ব্যর্থ: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "({0} ডাউনলোড করা হচ্ছে, সর্বমোট {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -223,120 +220,127 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "সংগ্রহস্থলের মধ্যে আবশ্যক প্যাকেজ অনুসন্ধান করা হচ্ছে" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo ফাইলের জন্য প্যাকেজ পাওয়া যায়নি" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "ডাউনলোড করার জন্য চিহ্নিত প্যাকেজ: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "ডাউনলোডের মাপ {0:.2f}মেগাবাইট, ইনস্টলেশনের মাপ: {1:.2f}মেগাবাইট। এগিয়ে যাওয়া " - "হবে কি?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "ব্যবহারকারী দ্বারা ডাউনলোড বাতিল করতে ব্যর্থ" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "প্যাকেজ {0} ডাউনলোড করতে ব্যর্থ" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "আন-প্যাক করতে ব্যর্থ, ডাউনলোডের কাজ পরিত্যাগ করা হচ্ছে..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} সরিয়ে ফেলা হবে" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum আরম্ভ করতে ত্রুটি (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "'{0!s}' সংগ্রহস্থল নিষ্ক্রিয় করতে ব্যর্থ: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0} প্রস্তুত করতে ব্যর্থ: {1}, নিষ্ক্রিয় করা হচ্ছে" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "মিটা-ডাটা প্রাপ্ত করতে সমস্যা: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "ফাইলের তালিকা প্রাপ্ত করতে ত্রুটি: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -385,7 +389,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -413,7 +417,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -494,7 +498,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "বিকল্প GUI ফাইল" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -503,15 +507,15 @@ msgstr "" - "লিখনযোগ্য একটি ডিরেক্টরি প্রয়োজন, কিন্তু '%s'-র মধ্যে বর্তমানে কিছু লেখা " - "সম্ভব নয়। '%s'-এ এটি সরিয়ে এই প্রতিলিপির মধ্যে কর্ম সঞ্চালিত হবে কি?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "টেক্সট ফাইল প্রদর্শন/সম্পাদনা করুন" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -519,39 +523,39 @@ msgstr "" - "এই সমস্যার ক্ষেত্রে, অভিযোগ দায়েরের কোনো স্থান চিহ্নিত হয় নি। /etc/" - "libreport/* -এ কনফিগারেশন পরীক্ষা করুন।" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(আবশ্যক: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(আবশ্যক নয়, তথ্য বর্তমানে উপস্থিত রয়েছে: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(প্রদর্শন/সম্পাদনা করতে এইখানে ক্লিক করুন)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(বাইনারি ফাইল, %llu বাইট)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(বর্ণনা বিহীন)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu বাইট, %u ফাইল" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -560,7 +564,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -568,7 +572,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -580,78 +584,51 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "প্রক্রিয়াকরণ ব্যর্থ।" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "প্রক্রিয়াকরণ সমাপ্ত হয়েছে।" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "প্রক্রিয়াকরণ সমাপ্ত, অনুগ্রহ করে পরবর্তী ধাপে এগিয়ে চলুন।" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "'%s' ইভেন্টের ক্ষেত্র প্রক্রিয়াকরণ নির্ধারিত হয়নি" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "প্রক্রিয়াকরণের কাজে বাধা সৃষ্টি হয়েছে: লিখনযোগ্য ডিরেক্টরি বিনা এগিয়ে " - "যাওয়া সম্ভব নয়।" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "প্রক্রিয়াকরণ চলছে..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "ইভেন্টের নাম বৈধ না হওয়ার ফলে backtrace-র গুরুত্ব পরীক্ষা করতে ব্যর্থ" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -660,99 +637,107 @@ msgstr "" - "'%s' ইভেন্টের ক্ষেত্রে সংবেদনশীল তথ্য পাঠানোর অনুমতি আবশ্যক। আপনি কি এগিয়ে " - "যেতে ইচ্ছুক?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' সাধারণ ফাইল নয়" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "আপনি একটি ফাইলকে সেটির মধ্যেই কপি করার প্রচেষ্টা করছেন" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' কপি করা সম্ভব নয়: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "'%s' বস্তুটি বর্তমানে উপস্থিত রয়েছে ও সেটি পরিবর্তন করা সম্ভব নয়" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "অন্তর্ভুক্ত করা হবে" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "নাম" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "মান" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "সমস্যার বিবরণ" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "অতিরিক্ত তথ্য উপলব্ধ করুন" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "তথ্য পরিবর্ধন করুন" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "রিপোর্ট করার যোগ্য তথ্য নিশ্চিত করুন" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "প্রক্রিয়াকরণ" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "প্রক্রিয়াকরণ সমাপ্ত" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "বিবরণ" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -803,26 +788,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -833,7 +798,7 @@ msgstr "" - "সংগ্রহ করা তথ্য পর্যালোচনা করে সমস্যাটি কোথায় রিপোর্ট করা হবে তা বাছাই করতে " - "অনুরোধ করা হবে। এগিয়ে যাওয়ার জন্য 'এগিয়ে চলুন' ক্লিক করুন।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -843,11 +808,11 @@ msgstr "" - "উৎপন্ন করা যাবে? সমস্যার কারণনির্ণয় করার জন্য অতিরিক্ত কোনো বর্ণনা উপলব্ধ " - "করা যাবে কি? সম্ভব হলে, অনুগ্রহ করে ইংরাজিতে লিখে পাঠান।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "এগিয়ে চলার পূর্বে how to-র মধ্যে তথ্য পূরণ করা আবশ্যক..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -855,31 +820,31 @@ msgstr "" - "আপনার বক্তব্যগুলি গোপনীয় নয়। সার্বজনীনরূপে প্রদর্শিত সমস্যা সম্বন্ধীয় " - "রিপোর্টের মধ্যে সেগুলি অন্তর্ভুক্ত করা হতে পারে।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "সমস্যাটির কারণ জানা যায়নি" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "মাপ:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "একটি ফাইল সংযুক্ত করুন" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "তথ্যটি পর্যালোচনা করা হয়েছে ও তা দায়ের করতে আমি সম্মত (_a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -889,19 +854,19 @@ msgstr "" - "অ্যাকাউন্টের নাম ও পাসওয়ার্ড) মুছে ফেলা হয়েছে কি না তা নিশ্চিত করুন। সাধারণত " - "ব্যাক-ট্রেস, কমান্ড-লাইন ও এনভায়রমেন্ট ভেরিয়েবল পরীক্ষা করা হয়।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "প্রক্রিয়াকরণ এখনো আরম্ভ করা হয়নি" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "লগ প্রদর্শন করা হবে" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "রিপোর্ট দায়ের করার কাজ সমাপ্ত হয়েছে। এই উইন্ডোটি এখন বন্ধ করা যাবে।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -911,16 +876,15 @@ msgstr "" - "করুন অথবা সমস্যার বিবরণটি উন্নত করে পুনরায় রিপোর্ট করুন ও 'এগিয়ে চলুন' ক্লিক " - "করুন।" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "ভার্বোস মোড ব্যবহার করা হবে" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "সমস্যা সংক্রান্ত ডিরেক্টরি" - -@@ -946,90 +910,131 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "আবশ্যক সামগ্রী অনুপস্থিত: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "আবশ্যক সামগ্রী অনুপস্থিত: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "আপলোড করা হচ্ছে: %llu কিলোবাইট, সর্বমোট %llu কিলোবাইট" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s-কে %s-এ পাঠানো হচ্ছে" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s-কে %s-এ সাফল্যের সাথে পাঠানো হয়েছে" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "আবশ্যক মান অনুপস্থিত" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "utf8-র অক্ষর '%c' বৈধ" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "অবৈধ সংখ্যা '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "অবৈধ বুলিয়ান মান '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "অসমর্থিত বিকল্পের ধরন" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - "অনুগ্রহ করে ABRT প্রজেক্ট নির্মাতাদেরকে এই সমস্যা সম্পর্কে সূচীত করুন।" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1037,17 +1042,17 @@ msgstr "" - "ব্যাক-ট্রেসের তথ্য সম্পূর্ণ নয়, অনুগ্রহ করে পুনরাবৃত্তির জন্য প্রয়োজনীয় " - "ধাপগুলি সঠিকরূপে চিহ্নিত করুন।" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - "ব্যাক-ট্রেস ব্যবহারযোগ্য না হওয়ার ফলে রিপোর্ট দায়ের করার ব্যবস্থা নিষ্ক্রিয় " - "করা হয়েছে।" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1056,69 +1061,94 @@ msgstr "" - "অনুগ্রহ করে চিহ্নিত কমান্ড সহযোগে স্বয়ং debuginfo ইনস্টল করার প্রয়াস করুন: " - "\"debuginfo-install %s\" and try again." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "সঠিক debuginfo সম্ভবত অনুপস্থিত অথবা coredump ক্ষতিগ্রস্ত হয়েছে।i" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1149,21 +1179,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1246,49 +1289,69 @@ msgid "Bugzilla account password" - msgstr "Bugzilla অ্যাকাউন্টের পাসওয়ার্ড" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla সার্ভারের ঠিকানা" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL যাচাই করুন" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL-কির বৈধতা যাচাই করা হবে" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1297,8 +1360,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1307,8 +1370,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1317,8 +1380,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1327,27 +1390,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1387,13 +1429,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1408,7 +1450,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1423,7 +1465,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1458,159 +1500,200 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "কনফিগারেশন ফাইল (একাধিকবার উল্লেখ করা হতে পারে)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILE যোগ করা হবে [এই ID সহ বাগে]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "বাগ প্রস্তুত করার সময়, বাইনারি ফাইলগুলিও যুক্ত করুন" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "এই সমস্যার রিপোর্ট উপস্থিত থাকলেও তা পুনরায় দায়ের করতে বাধ্য করা হবে" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "লগ-আউট করুন" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "প্রতিলিপি পরীক্ষা করা হচ্ছে" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "নতুন বাগ নির্মাণ" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "বাগ %i-র সাথে কিছু অতিরিক্ত সামগ্রী যোগ করা হচ্ছে" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "বাগটি পূর্বেই দায়ের করা হয়েছে: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "%d বাগে নতুন বক্তব্য যোগ করা হবে" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "উন্নত ব্যাক-ট্রেস যোগ করা হচ্ছে" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "বাগের পূর্ববর্তী তথ্যের মধ্যে একই বিবৃতি পাওয়া গিয়েছে, নতুন করে একই বিবৃতি " - "পুনরায় যোগ করা হবে না" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "অবস্থা: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1645,7 +1728,7 @@ msgstr "" - "Parameter can be overridden via $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "কনফিগারেশন ফাইল" - -@@ -1675,12 +1758,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ই-মেইল প্রেরণ..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "চিহ্নিত ঠিকানায় ই-মেইল পাঠানো হয়েছে: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1694,11 +1777,11 @@ msgstr "" - "\n" - "If not specified, CONFFILE defaults to " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "কনফিগ ফাইল" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - "শুধুমাত্র সূচীত করা হবে (রিপোর্টটিকে 'পাঠানো হয়েছে' রূপে চিহ্নিত করা হবে " -@@ -1735,34 +1818,34 @@ msgstr "ব্যবহারকারী দ্বারা বাতিল ক - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "লেখার জন্য '%s' খোলা যায়নি। অনুগ্রহ করে একটি পৃথক ফাইল নির্বাচন করুন:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "রিপোর্টটি %s-এ সংযুক্ত করা হয়েছে" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "রিপোর্টটি %s-এ সংরক্ষণ করা হয়েছে" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "RHTSupport টিকেট তৈরি করতে কি আপনি এখনো ইচ্ছুক?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1771,77 +1854,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILE আপলোড করুন [এই ID সহ কেসের সাথে]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s'-কে '%s' কেসের সাথে যুক্ত করা হচ্ছে" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "তথ্য সংকুচন করা হচ্ছে" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1854,41 +1941,49 @@ msgstr "প্রাসঙ্গিক নথিপত্র: " - msgid "Updates which possibly help: " - msgstr "সম্ভবত সহায়ক আপডেট: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "আর্কাইভ প্রস্তুত করা হয়েছে: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "যে মূল URL-এ আপলোড করা হবে" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1905,7 +2000,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1948,48 +2043,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1997,47 +2092,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2073,39 +2168,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2268,6 +2366,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2339,24 +2453,24 @@ msgstr "" - "%i বাগটি DUPLICATE রপে চিহ্নিত করে CLOSED অবস্থায় রয়েছে কিন্তু এটির কোনো " - "DUP_ID নেই" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "নতুন বাগ id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla দ্বারা বাগ %d-র ঊর্ধ্বতন বাগ সন্ধান করা যায়নি" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2549,65 +2663,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "ureport সার্ভারের সাথে অনিরাপদ সংযোগের অনুমতি দেওয়া হবে" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2616,51 +2754,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/bs.po b/po/bs.po -index d75771b..0076f17 100644 ---- a/po/bs.po -+++ b/po/bs.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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: 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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -174,46 +174,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -221,118 +218,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -381,7 +385,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -407,7 +411,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -486,60 +490,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternativna GUI datoteka" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(pritisnite ovdje da pogledate/uredite)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binarna datoteka, %llu bajta)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(bez opisa)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bajta, %u datoteka" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -548,7 +552,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -556,7 +560,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -568,174 +572,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Procesiranje za događaj '%s' nije definisano" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Ime" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Vrijednost" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detalji" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -784,26 +769,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -814,18 +779,18 @@ msgstr "" - "pregledate sakupljene podatke i da odaberete gdje bi se problem trebao " - "poslati. Pritisnite 'Naprijed' da nastavite." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -833,66 +798,65 @@ msgstr "" - "Vaši komentari nisu privatni. Moguće je da se uključe u javno " - "vidljive izvještaje problema." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Veličina:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -918,89 +882,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "d" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Nedostaje obavezna vrijednost" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Nevažeći utf8 znak '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Nevažeći broj '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Nevažeća boolean vrijednost '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Nepodržan tip opcije" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1008,84 +1013,109 @@ msgstr "" - "Funkcijski trag nije potpun. Molim pobrinite se da unesete korake za " - "reproduciranje." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Izvještavanje isključeno jer je funkcijski trag neiskoristiv." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1116,21 +1146,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1211,49 +1254,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1262,8 +1325,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1272,8 +1335,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1282,8 +1345,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1292,27 +1355,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1341,13 +1383,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1362,7 +1404,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1377,7 +1419,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1412,157 +1454,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1587,7 +1670,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1617,12 +1700,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1631,11 +1714,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1667,34 +1750,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1703,77 +1786,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1786,41 +1873,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1837,7 +1932,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1880,48 +1975,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1929,47 +2024,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2005,39 +2100,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2199,6 +2297,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2264,24 +2378,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2474,65 +2588,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2541,51 +2679,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/ca.po b/po/ca.po -index 1dfd65f..13df937 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -7,21 +7,22 @@ - # josep torne , 2014 - # Robert Antoni Buj Gelonch , 2015. #zanata -+# Robert Antoni Buj Gelonch , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-05-11 09:37-0400\n" -+"PO-Revision-Date: 2016-01-27 03:09-0500\n" - "Last-Translator: Robert Antoni Buj Gelonch \n" - "Language-Team: Catalan (http://www.transifex.com/projects/p/libreport/" - "language/ca/)\n" - "Language: ca\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -59,7 +60,7 @@ msgstr "Visualitza la versió i surt" - - #: ../src/cli/cli.c:91 - msgid "Noninteractive: don't ask questions, assume 'yes'" --msgstr "No interactiu: no facis preguntes, assumeix 'si'" -+msgstr "No interactiu: no facis preguntes, assumeix «sí»" - - #: ../src/cli/cli.c:93 - msgid "Log to syslog" -@@ -159,7 +160,7 @@ msgstr "La vostra entrada no és vàlida a causa que:" - #: ../src/cli/cli-report.c:475 - #, c-format - msgid "Bad value for '%s': %s" --msgstr "Valor no vàlid per '%s': %s" -+msgstr "Valor no vàlid per «%s»: %s" - - #: ../src/cli/cli-report.c:673 - #, c-format -@@ -167,12 +168,12 @@ msgid "" - "Event '%s' requires permission to send possibly sensitive data. Do you want " - "to continue?" - msgstr "" --"L'esdeveniment '%s' requereix el permís per enviar possibles dades sensibles." -+"L'esdeveniment «%s» requereix el permís per enviar possibles dades sensibles." - " Voleu continuar?" - - #: ../src/cli/cli-report.c:720 - msgid "You have chosen number out of range" --msgstr "Heu triat un número fora de rang" -+msgstr "Heu triat un número que està fora de l'interval" - - #: ../src/cli/cli-report.c:725 - msgid "Invalid input, exiting." -@@ -186,46 +187,45 @@ msgstr "Seleccioneu un esdeveniment a executar:" - msgid "Select a workflow to run: " - msgstr "Seleccioneu un flux de treball a executar:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "S'està extraient el cpio des de {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "No es pot escriure a '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "No es pot extreure el paquet '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "S'estan obtenint els fitxers de {0} fets a {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "No es poden extreure els fitxers des del '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" -+"No es poden extreure els fitxers des del '{0}'. Per a més informació vegeu " -+"'{1}'" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "No es pot eliminar '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "S'estan baixant ({0} de {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "S'està inicialitzant el gestor de paquets" - -@@ -233,39 +233,39 @@ msgstr "S'està inicialitzant el gestor de paquets" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "S'estan preparant els dipòsits" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "S'estan cercant els paquets necessaris als dipòsits" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "No es poden trobar els paquets per a {0} fitxers debuginfo" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Paquets a baixar: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "{0:.2f}Mb de baixada, {1:.2f}Mb un cop instal·lat. Voleu continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "La baixada ha estat cancel·lada per l'usuari" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -273,7 +273,7 @@ msgstr "" - "Advertència: No hi ha prou espai lliure en el directori temporal '{0}' " - "(falten {1:.2f}Mb). Voleu continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -282,38 +282,47 @@ msgstr "" - "Advertència: No hi ha prou espai lliure en el directori de la memòria cau " - "'{0}' (falten {1:.2f}Mb). Voleu continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "La baixada del paquet {0} ha fallat" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "El desempaquetament ha fallat, s'està avortant la baixada..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+"'{0}' ha de ser propietat de l'ABRT. Si us plau, executeu '# chown -R abrt." -+"abrt {0}' per corregir la incidència." -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "S'està eliminant {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "No es pot suprimir {0}, probablement conté un registre d'error" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "Error en llegir la configuració del dipòsit: '{0!s}'" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "Error en preparar els dipòsits: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -321,38 +330,38 @@ msgstr "" - "S'ha produït un problema '{0!s}' mentre es baixava des de la rèplica: " - "'{1!s}'. S'està intentat amb la següent" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Error en la inicialització del yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Error: no es pot crear el directori de la memòria cau, s'està sortint" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "No es pot deshabilitar el dipòsit '{0!s}': {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "No es pot inhabilitar la baixada asíncrona, la sortida podria contenir " - "artefactes!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "No es pot configurar {0}: {1}, s'està deshabilitant" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Error en recuperar les metadades: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Error en recuperar el llistat dels fitxers: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "No es pot copiar el fitxer'{0}': {1}" -@@ -401,7 +410,7 @@ msgstr "Esdeveniments" - msgid "C_onfigure" - msgstr "C_onfigura" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Tanca" - -@@ -428,7 +437,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Cancel·la" - -@@ -441,13 +450,13 @@ msgstr "D'ac_ord" - #, c-format - msgid "Can't connect over DBus to name '%s' path '%s' interface '%s': %s" - msgstr "" --"No es pot connectar sobre el DBus al nom '%s' camí '%s' interfície '%s': %s" -+"No es pot connectar sobre el DBus al nom «%s» camí «%s» interfície «%s»: %s" - - #: ../src/gtk-helpers/secrets.c:191 - #, c-format - msgid "Can't call method '%s' over DBus on path '%s' interface '%s': %s" - msgstr "" --"No es pot cridar el mètode '%s' sobre el DBus al camí '%s' interfície '%s': " -+"No es pot cridar el mètode «%s» sobre el DBus al camí «%s» interfície «%s»: " - "%s" - - #: ../src/gtk-helpers/secrets.c:549 -@@ -475,12 +484,12 @@ msgstr "Ha fallat el mètode ReadAlias('%s') del servei secret del D-Bus: %s" - #: ../src/gtk-helpers/secrets.c:1104 - #, c-format - msgid "Can't create a secret item for event '%s': %s" --msgstr "No es pot crear un element secret per a l'esdeveniment '%s': %s" -+msgstr "No es pot crear un element secret per a l'esdeveniment «%s»: %s" - - #: ../src/gtk-helpers/secrets.c:1286 - #, c-format - msgid "can't get secret value of '%s': %s" --msgstr "no es pot obtenir el valor del secret de '%s': %s" -+msgstr "no es pot obtenir el valor del secret de «%s»: %s" - - #: ../src/gtk-helpers/problem_details_widget.c:191 - #, c-format -@@ -518,24 +527,24 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Fitxer alternatiu de la interfície gràfica d'usuari" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" --"Necessita un directori que es pugui escriure, però no es pot escriure a '%s'." --" Mou a '%s' i opera amb les dades mogudes?" -+"Necessita un directori que es pugui escriure, però no es pot escriure a «%s»." -+" Mou a «%s» i opera amb les dades mogudes?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Visualitza/edita un fitxer de text" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "De_sa" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -543,39 +552,39 @@ msgstr "" - "No s'han definit les destinacions de la presentació d'informes per aquest " - "problema. Comproveu la configuració en /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(requereix: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(no és necessari, les dades ja existeixen: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(feu clic aquí per a visualitzar-ho/editar-ho)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(fitxer binari, %llu bytes)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(sense descripció)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bytes, %u fitxers" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "S'ha cancel·lat el processament" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -589,7 +598,7 @@ msgstr "" - "\t▫ les dades del problema estan corrompudes\n" - "\t▫ una configuració no vàlida" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -600,7 +609,7 @@ msgstr "" - "l'element Preferències en el menú de l'aplicació, després d'aplicar " - "els canvis en la configuració feu clic al botó Repeteix." - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -620,212 +629,168 @@ msgstr "" - "es pugen s'emmagatzemen en un emmagatzematge protegit i només un nombre " - "limitat de persones poden llegir-les." - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "Es va interrompre el processament perquè el problema no és dels que es poden " - "informar." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "El processament ha fallat." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "El processament ha finalitzat." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "El processament ha finalitzat, continueu amb el següent pas." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"S'ha sol·licitat el tiquet privat però el nom del grup 'private' ha quedat " --"en desús. Amablement us demanem que utilitzeu el nom del grup " --"'fedora_contrib_private'. Feu clic al botó Sí o actualitzeu manualment la " --"configuració. O bé feu clic al botó No, si realment voleu utilitzar el grup " --"'private'.\n" --"\n" --"Si no esteu segur del significat d'aquest diàleg, si us plau, confieu en " --"nosaltres i feu clic al botó Sí.\n" --"\n" --"Llegiu més sobre els informes d'errors privats a:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"S'ha sol·licitat el tiquet privat però el nom del grup private ha " --"quedat en desús. Amablement us demanem que utilitzeu el nom del grup " --"fedora_contrib_private. Feu clic al botó Sí o actualitzeu manualment " --"la configuració. O bé feu clic al botó No, si realment voleu utilitzar el " --"grup private.\n" --"\n" --"Si no esteu segur del significat d'aquest diàleg, si us plau, confieu en " --"nosaltres i feu clic al botó Sí.\n" --"\n" --"Llegiu més sobre els informes d'errors privats a:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" --msgstr "No s'ha definit cap processament per a l'esdeveniment '%s'" -+msgstr "No s'ha definit cap processament per a l'esdeveniment «%s»" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "S'ha interromput el processament: no es pot continuar sense un directori on " - "s'hi pugui escriure." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "S'està processant..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+"S'han detectat possibles dades sensibles, no dubteu en corregir l'informe i " -+"eliminar-les." -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "No es pot comprovar la qualificació de la traça inversa a causa del nom de " - "l'esdeveniment no vàlid" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" --"L'esdeveniment '%s' requereix el permís per enviar possibles dades sensibles." -+"L'esdeveniment «%s» requereix el permís per enviar possibles dades sensibles." - "\n" - "Voleu continuar?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Aquest problema no hauria de ser informat (el més probable és que sigui un " - "problema conegut). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Obre" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" --msgstr "'%s' no és un fitxer normal" -+msgstr "«%s» no és un fitxer normal" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Esteu intentant copiar un fitxer a si mateix" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" --msgstr "No es pot copiar '%s': '%s" -+msgstr "No es pot copiar «%s»: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" --msgstr "L'ítem '%s' ja existeix i no es pot modificar" -+msgstr "L'ítem «%s» ja existeix i no es pot modificar" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Incloure" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nom" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Valor" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Descripció del problema" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Seleccioneu com informar d'aquest problema" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Proporciona informació addicional " - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Revisa les dades" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Confirma les dades de l'informe" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "S'està processant" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "El processament ha finalitzat" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "_Atura" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Puja per a l'anàlisi" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "Repeteix" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Endavant" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detalls" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Restringeix l'accés a aquest informe" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -883,30 +848,6 @@ msgstr "Cerca" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" --"S'han detectat possibles dades sensibles, no dubteu en corregir l'informe i " --"eliminar-les." -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Restringeix l'accés a aquest informe" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Ningú excepte el grup Fedora Contrib se li permetrà veure l'informe amb " --"accés restringit (ni tan sols tu)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Conegueu més detalls quant als informes amb accés restringit" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -917,7 +858,7 @@ msgstr "" - "reviseu la informació recollida, i que escolliu on s'hauria d'informar el " - "problema. Cliqueu 'Endavant' per continuar." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -925,13 +866,13 @@ msgid "" - msgstr "" - "Com es va produir aquest problema (pas a pas)? Com es pot reproduir? Algun " - "comentari addicional que sigui útil per diagnosticar el problema? Si us " --"plau, si és possible feu-ho en anglès." -+"plau, si és possible, feu-ho en anglès." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Necessiteu omplir el com abans que pugueu procedir..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -939,31 +880,31 @@ msgstr "" - " Els vostres comentaris no són privats. Es poden incloure en informes " - "de problemes amb visibilitat pública." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Si no sabeu com descriure-ho, podeu" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "afegir un enregistrament de l'escriptori" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "No sé el que ha provocat aquest problema" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Mida:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Adjunta un fitxer" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "He revisat la informació i _accepto la presentació" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -974,20 +915,20 @@ msgstr "" - "contrasenyes). La traça inversa, línia d'ordres, les variables d'entorn són " - "els elements típics que cal examinar." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Encara no s'ha iniciat el processament" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Mostra el registre" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - "S'ha finalitzat la presentació d'informes. Podeu tancar aquesta finestra." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -997,23 +938,22 @@ msgstr "" - "addicional o proporcionar una millor descripció del problema i repetir el " - "procés de presentació d'informes, pressioneu 'Endavant'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Mostra informació detallada" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Problema de directori" - - #: ../src/lib/abrt_sock.c:160 - #, c-format - msgid "Can't delete: '%s'" --msgstr "No es pot esborrar '%s'" -+msgstr "No es pot esborrar «%s»" - - #: ../src/lib/abrt_sock.c:196 - msgid "locked by another process" -@@ -1030,95 +970,136 @@ msgstr "no és un directori de problema" - #: ../src/lib/abrt_sock.c:217 - #, c-format - msgid "Can't delete '%s': %s" --msgstr "No es pot eliminar '%s': %s" -+msgstr "No es pot eliminar «%s»: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "s" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Falta l'ítem necessari: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" --msgstr "El valor de l'uid no és vàlid: '%s'" -+msgstr "El valor de l'uid no és vàlid: «%s»" -+ -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Falta l'ítem necessari: «%s»" - - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "S'han pujat: %llu de %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "S'està enviant %s a %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" --msgstr "Introduïu el nom d'usuari per '%s':" -+msgid "Please enter user name for '%s//%s':" -+msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" --msgstr "Si us plau, introduïu la contrasenya per '%s':" -+msgid "Please enter password for '%s//%s@%s':" -+msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "S'ha enviat satisfactòriament %s a %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Falta valor obligatori" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "El caràcter utf8 '%c' no és vàlid" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" --msgstr "El número '%s' no és vàlid" -+msgstr "El número «%s» no és vàlid" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" --msgstr "El valor booleà '%s' no és vàlid" -+msgstr "El valor booleà «%s» no és vàlid" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Tipus d'opció no suportada" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" --"El problema no pot ser informat a causa d'unes dades no vàlides. el fitxer " --"'%s' no conté un número." -+"El problema no pot ser informat a causa d'unes dades no vàlides. El fitxer " -+"«%s» no conté un número." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - "Si us plau, informeu d'aquest problema als desenvolupadors del projecte ABRT." - "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1126,19 +1107,19 @@ msgstr "" - "La traça inversa està incompleta, si us plau, assegureu-vos que proporcioneu " - "els passos a reproduir. " - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "La traça inversa probablement no pot ajudar als desenvolupadors a " - "diagnosticar l'error de programari." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - "La presentació d'informes està deshabilitada perquè la traça inversa és " - "inutilitzable." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1147,80 +1128,106 @@ msgstr "" - "Si us plau, proveu d'instal·lar manualment el debuginfo mitjançant: " - "\"debuginfo-install %s\" i torneu-ho a intentar." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "Probablement falta un debuginfo adequat o el coredump està corromput." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" --msgstr "El vostre problema sembla que estigui provocat per %s\n" -+msgstr "El vostre problema sembla que ha estat provocat per %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" --msgstr "El vostre problema sembla que estigui provocat per un dels següents:\n" -+msgstr "" -+"El vostre problema sembla que ha estat provocat per un dels següents:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" --msgstr "Error en pujar l'uReport al servidor '%s' amb curl: %s" -+msgstr "Error en pujar l'uReport al servidor «%s» amb curl: %s" -+ -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" --msgstr "No existeix l'URL '%s' (es va obtenir un error 404 del servidor)" -+msgstr "No existeix l'URL «%s» (es va obtenir un error 404 del servidor)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" --"El servidor a '%s' es va trobar amb un problema intern (es va obtenir un " -+"El servidor a «%s» es va trobar amb un problema intern (es va obtenir un " - "error 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" --"El servidor a '%s' no pot tractar actualment la petició (es va obtenir un " -+"El servidor a «%s» no pot tractar actualment la petició (es va obtenir un " - "error 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" --msgstr "Resposta HTTP inesperada de '%s': %d" -+msgstr "Resposta HTTP inesperada de «%s»: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" --"No es pot analitzar sintàcticament la resposta del servidor ureport a '%s'" -+"No es pot analitzar sintàcticament la resposta del servidor ureport a «%s»" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" --msgstr "La resposta de '%s' no té un format vàlid" -+msgstr "La resposta de «%s» no té un format vàlid" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" --"S'ha detectat una manca de concordança de tipus en la resposta de '%s'" -+"S'ha detectat una manca de concordança de tipus en la resposta de «%s»" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Error en la presentació del problema" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" --msgstr "El servidor a '%s' va respondre amb un error: '%s'" -+msgstr "El servidor a «%s» va respondre amb un error: «%s»" - - #: ../src/lib/make_descr.c:149 ../src/lib/make_descr.c:160 - msgid "Reported:" -@@ -1237,7 +1244,7 @@ msgstr "Ús: " - #: ../src/lib/problem_data.c:252 - #, c-format - msgid "Essential element '%s' is missing, can't continue" --msgstr "Falta l'element essencial '%s' i no es pot continuar" -+msgstr "Falta l'element essencial «%s» i no es pot continuar" - - #: ../src/lib/problem_report.c:477 - #, c-format -@@ -1250,72 +1257,85 @@ msgstr "" - "No es pot generar la descripció de la traça de la pila (sense fil d'execució " - "de la pana?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "La nota no conté la puntuació" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" --msgstr "('%s' va ser matat pel senyal %u)\n" -+msgstr "(«%s» va ser matat pel senyal %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" --msgstr "(s'ha completat '%s' amb èxit)\n" -+msgstr "(s'ha completat «%s» amb èxit)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" --msgstr "('%s' va sortir amb %u)\n" -+msgstr "(«%s» va sortir amb %u)\n" - - #: ../src/plugins/abrt_rh_support.c:356 - #, c-format - msgid "Error in case creation at '%s': %s" --msgstr "S'ha produït un error en la creació del cas a '%s': %s" -+msgstr "S'ha produït un error en la creació del cas a «%s»: %s" - - #: ../src/plugins/abrt_rh_support.c:365 - #, c-format - msgid "Error in case creation at '%s', HTTP code: %d, server says: '%s'" - msgstr "" --"S'ha produït un error en la creació del cas a '%s', codi HTTP: %d, el " --"servidor va dir: '%s'" -+"S'ha produït un error en la creació del cas a «%s», codi HTTP: %d, el " -+"servidor va dir: «%s»" - - #: ../src/plugins/abrt_rh_support.c:369 - #, c-format - msgid "Error in case creation at '%s', HTTP code: %d" --msgstr "S'ha produït un error en la creació del cas a '%s', codi HTTP: %d" -+msgstr "S'ha produït un error en la creació del cas a «%s», codi HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:420 - #, c-format - msgid "Error in case creation at '%s': no Location URL, HTTP code: %d" - msgstr "" --"S'ha produït un error en la creació del cas a '%s': sense URL de " -+"S'ha produït un error en la creació del cas a «%s»: sense URL de " - "localització, codi HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:524 - #, c-format - msgid "Error in comment creation at '%s': %s" --msgstr "S'ha produït un error en la creació del comentari a '%s': %s" -+msgstr "S'ha produït un error en la creació del comentari a «%s»: %s" - - #: ../src/plugins/abrt_rh_support.c:533 - #, c-format - msgid "Error in comment creation at '%s', HTTP code: %d, server says: '%s'" - msgstr "" --"S'ha produït un error en la creació del comentari a '%s', codi HTTP: %d, el " --"servidor va dir: '%s'" -+"S'ha produït un error en la creació del comentari a «%s», codi HTTP: %d, el " -+"servidor va dir: «%s»" - - #: ../src/plugins/abrt_rh_support.c:537 - #, c-format - msgid "Error in comment creation at '%s', HTTP code: %d" - msgstr "" --"S'ha produït un error en la creació del comentari a '%s', codi HTTP: %d" -+"S'ha produït un error en la creació del comentari a «%s», codi HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:583 - #, c-format - msgid "Error in comment creation at '%s': no Location URL, HTTP code: %d" - msgstr "" --"S'ha produït un error en la creació del comentari a '%s': sense URL de " -+"S'ha produït un error en la creació del comentari a «%s»: sense URL de " - "localització, codi HTTP: %d" - - #: ../src/plugins/report_Bugzilla.xml.in.h:1 -@@ -1356,32 +1376,57 @@ msgid "Bugzilla account password" - msgstr "Contrasenya del compte Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Restringeix l'accés" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Restringeix l'accés al tiquet creat del Bugzilla permetent que únicament ho " -+"vegin els usuaris dels grups indicats (consulteu els ajustos avançats per a " -+"més detalls)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Grups" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Restringeix l'accés als grups indicats <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL del Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Adreça del servidor del Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Verificació SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Comprova la validesa de la clau SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Producte del Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1389,11 +1434,11 @@ msgstr "" - "Únicament especifiqueu-ho si necessiteu un producte diferent de " - "l'especificat a /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Versió del producte del Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1401,8 +1446,8 @@ msgstr "" - "Únicament especifiqueu-ho si necessiteu una versió de producte diferent de " - "l'especificada a /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1411,8 +1456,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "Servidor intermediari d'HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1421,8 +1466,8 @@ msgstr "Servidor intermediari d'HTTP" - msgid "Sets the proxy server to use for HTTP" - msgstr "Estableix el servidor intermediari a utilitzar per a l'HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1431,8 +1476,8 @@ msgstr "Estableix el servidor intermediari a utilitzar per a l'HTTP" - msgid "HTTPS Proxy" - msgstr "Servidor intermediari d'HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1441,32 +1486,6 @@ msgstr "Servidor intermediari d'HTTPS" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Estableix el servidor intermediari a utilitzar per a l'HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Restringeix l'accés" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Restringeix l'accés al tiquet creat del Bugzilla permetent que únicament ho " --"vegin els usuaris dels grups indicats (consulteu els ajustos avançats per a " --"més detalls)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Grups" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Restringeix l'accés als grups indicats <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1510,13 +1529,13 @@ msgstr "" - "configuració" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" --msgstr "No es pot continuar sense iniciar la sessió" -+msgstr "No es pot continuar sense l'usuari" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "No es pot continuar sense la contrasenya" -@@ -1533,11 +1552,11 @@ msgstr "" - "Bugzilla:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" --"La contrasenya o l'usuari no són vàlids. Introduïu la contrasenya per a '%s':" -+"La contrasenya o l'usuari no són vàlids. Introduïu la contrasenya per a «%s»:" - "" - - #: ../src/plugins/reporter-bugzilla.c:221 -@@ -1550,7 +1569,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1584,136 +1603,106 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g NOM-GRUP]... [-c FITXERCONF]... [-F FITXERFMT] [-A FITXERFMT2] -" --"d DIR\n" --"or:\n" --"& [-v] [-c FITXERCONF]... [-d DIR] -t[ID] FITXER...\n" --"or:\n" --"& [-v] [-c FITXERCONF]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c FITXERCONF]... -h DUPHASH\n" --"\n" --"Informa del problema a Bugzilla.\n" --"\n" --"L'eina llegeix el DIR. Després es registra a Bugzilla i intenta de trobar un " --"error \n" --"de programari amb el mateix abrt_hash:HEXSTRING al 'Whiteboard'.\n" --"\n" --"Si no es troba l'error de programari, aleshores es crea un nou error de \n" --"programari. Els elements del DIR s'emmagatzemen com a descripció de\n" --"l'error de programari o com a adjunts, segons el seu tipus i la seva mida.\n" --"\n" --"En cas contrari, si es troba l'error de programari i està marcat com CLOSED\n" --"DUPLICATE, l'eina segueix la cadena dels duplicats fins que trobi un error " --"de\n" --"programari unnon-DUPLICATE. L'eina afegeix un nou comentari a l'error trobat." --"\n" --"\n" --"L'URL al nou/modificat error de programari i s'imprimeix per la sortida\n" --"estàndard i s'enregistra a l'element 'reported_to'.\n" --"\n" --"L'opció -t puja els FITXERs a l'error de programari ja creat al lloc de " --"Bugzilla. L'ID\n" --"de l'error de programari es recupera del directori especificat amb -d DIR. " --"Si les\n" --"dades del problema del DIR no es van informar mai al Bugzilla, fallarà la " --"pujada.\n" --"\n" --"L'opció -tID puja els FITXERs a l'error de programari amb l'ID especificat " --"al lloc\n" --"de Bugzilla. S'ignora -d DIR.\n" --"\n" --"L'opció -w afegeix l'usuari de bugzilla a la llista CC de l'error de " --"programari.\n" --"\n" --"L'opció -r estableix l'últim url de l'element reporter_to que està prefixat " --"amb el\n" --"TRACKER_NAME al camp URL. Aquesta opció s'aplica només quan s'omple un nou\n" --"error. El valor per defecte és 'ABRT Server'\n" --"\n" --"Si no s'especifica, CONFFILE per defecte a" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Fitxer de configuració (pot ser donat moltes vegades)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "S'està donant format al fitxer per a un comentari inicial" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "S'està donant format al fitxer per als duplicats" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Adjunta FITXERs [a l'error de programari amb aquest ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - "Quan es creï un error de programari, adjunta també els fitxers binaris" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - "Força la presentació d'informes encara que ja s'hagi informat del problema" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - "Afegeix l'usuari bugzilla a la llista CC [de l'error de programari amb " - "aquest ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Imprimeix el BUG_ID que ha donat DUPHASH" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" --"Un nom del seguidor de l'error de programari per a una URL addicional des de " -+"Un nom del seguidor de l'error de programari per a un URL addicional des de " - "'reported_to'" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Restringeix l'accés a només aquest grup" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Depura" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "S'estan cercant problemes similars al bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - "En la configuració no s'ha proporcionat l'usuari. Introduïu el vostre usuari " - "de Bugzilla:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - "No es proporciona la contrasenya amb la configuració. Si us plau, introduïu " --"la contrasenya per '%s':" -+"la contrasenya per «%s»:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1721,88 +1710,110 @@ msgstr "" - "No es pot obtenir l'ID de Bugzilla perquè aquest problema encara no ha estat " - "informat a Bugzilla." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" --"Aquest problema ha estat informat al Bugzilla '%s' que difereix del Bugzilla " --"configurat '%s'." -+"Aquest problema ha estat informat al Bugzilla «%s» que difereix del Bugzilla " -+"configurat «%s»." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." --msgstr "URL mal formada al Bugzilla '%s'." -+msgstr "URL amb format dolent al Bugzilla «%s»." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" --msgstr "S'està utilitzant l'Id. de Bugzilla '%s'" -+msgstr "S'està utilitzant l'id. de Bugzilla «%s»" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "S'està tancant la sessió" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - "No es pot determinar el producte Bugzilla a partir de les dades del problema." - "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "S'està revisant si hi ha duplicats" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "S'està creant un nou error de programari" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "La creació del nou error de programari ha fallat." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" --msgstr "S'està afegint l'URL externa a l'error de programari %i" -+msgstr "S'està afegint l'URL extern a l'error de programari %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "S'estan afegint els adjunts a l'error de programari %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Ja s'ha informat de l'error de programari: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" --msgstr "S'està afegirnt %s a la llista de CC" -+msgstr "S'està afegint %s a la llista de CC" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "S'està afegint un nou comentari a l'error de programari %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "S'està adjuntant millor la traça inversa" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "S'ha trobat el mateix comentari en l'històric de l'error de programari, no " - "se n'afegeix cap de nou" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Estat: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1831,14 +1842,14 @@ msgstr "" - "similar).\n" - "\n" - "Els fitxers amb els noms llistats a $EXCLUDE_FROM_REPORT no estan inclosos\n" --"al tarball.\n" -+"a l'arxiu tar.\n" - "\n" - "Les línies en FITXERCONF han de tenir el format 'PARÀMETRE = VALOR'.\n" - "Paràmetre de cadena de text reconegut: SubmitURL.\n" --"El paràmetre es pot reemplaçar amb $KerneloopsReporter_SubmitURL." -+"El paràmetre pot reemplaçar-se amb $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Fitxer de configuració" - -@@ -1849,7 +1860,7 @@ msgid "" - "'%s' is to be used" - msgstr "" - "No es va especificar l'adreça de correu electrònic de %s. Voleu fer-ho ara? " --"Si no ho feu s'utilitza '%s'" -+"Si no ho feu, s'utilitza «%s»" - - #: ../src/plugins/reporter-mailx.c:66 - #, c-format -@@ -1868,14 +1879,14 @@ msgstr "S'està enviant un correu electrònic de notificació a: %s" - - #: ../src/plugins/reporter-mailx.c:138 - msgid "Sending an email..." --msgstr "S'està enviant un correu electrònic" -+msgstr "S'està enviant un correu electrònic..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "El correu electrònic es va enviar a: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1890,11 +1901,11 @@ msgstr "" - "\n" - "Si no s'especifica, el FITXERCONF per defecte està a " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Fitxer de configuració " - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Tan sols notifica (no es marca l'informe com a enviat)" - -@@ -1927,38 +1938,38 @@ msgstr "Ha estat cancel·lat per l'usuari." - #: ../src/plugins/reporter-print.c:108 - #, c-format - msgid "Can't open '%s' for writing. Please select another file:" --msgstr "No es pot obrir '%s' per a l'escriptura. Seleccioneu un altre fitxer:" -+msgstr "No es pot obrir «%s» per a l'escriptura. Seleccioneu un altre fitxer:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "L'informe s'ha afegit a %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "L'informe s'ha guardat a %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" --msgstr "El servidor va respondre amb un error: '%s'" -+msgstr "El servidor va respondre amb un error: «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Encara voleu crear un tiquet RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - "La contrasenya o l'usuari no són vàlids. Introduïu el vostre usuari de Red " - "Hat:" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1966,96 +1977,92 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-v] [-c FITXERCONF] -d DIR\n" --"or:\n" --"& [-v] [-c FITXERCONF] [-d DIR] -t[ID] [-u -C UR_FITXERCONF] FITXER...\n" --"\n" --"Informa d'un problema a RHTSupport.\n" --"\n" --"Si no s'especifica, el FITXERCONF per defecte està a " - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Puja els FITXERs [per al cas amb aquest ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "Presenta l'uReport abans de crear un nou cas" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "Fitxer de configuració per a l'uReport" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "En la configuració no s'ha proporcionat l'usuari. Introduïu el vostre usuari " - "de RHTS:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" --msgstr "S'està adjuntant '%s' al cas '%s'" -+msgstr "S'està adjuntant «%s» al cas «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "S'estan enviant les dades estadístiques de pana ABRT" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "No es pot crear un directori temporal a " -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "S'estan comprimint les dades" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "No es pot crear un directori temporal a " -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "No es pot crear el fitxer temporal a " - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "S'està revisant si hi ha consells" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "S'està creant un nou cas" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - "No es pot determinar el RHSP (Red Hat Support Product) a partir de les dades " - "del problema." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - "S'estan enllaçant el registre de les estadístiques de pana ABRT amb el cas" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - "S'estan enllaçant el registre de les estadístiques de pana ABRT amb l'adreça " --"de correu electrònic: '%s'" -+"de correu electrònic: «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" --msgstr "S'està afegint un comentari al cas '%s'" -+msgstr "S'està afegint un comentari al cas «%s»" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" --msgstr "S'estan adjuntant les dades del problema al cas '%s'" -+msgstr "S'estan adjuntant les dades del problema al cas «%s»" - - #: ../src/plugins/reporter-rhtsupport-parse.c:202 - msgid "Documentation which might be relevant: " -@@ -2065,47 +2072,51 @@ msgstr "Documentació que pot ser apropiada:" - msgid "Updates which possibly help: " - msgstr "Actualitzacions que possiblement ajudin:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "No es pot continuar sense l'URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" --"Si us plau, introduïu una URL (scp, ftp, etc.) on s'hagin d'exportar les " --"dades del problema:" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "Introduïu la contrasenya per a la pujada:" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" --msgstr "L'arxiu s'ha creat: '%s'" -+msgstr "L'arxiu s'ha creat: «%s»" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c FITXERCONF] [-u URL]\n" --"\n" --"Puja un fitxer tarball del directori DIR del problema a l'URL.\n" --"Si no s'especifica l'URL, es crea el tarball a" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "URL base per penjar a" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+"Si us plau, introduïu un URL (scp, ftp, etc.) on s'hagin d'exportar les " -+"dades del problema:" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "Introduïu el vostre usuari de MantisBT:" -@@ -2122,7 +2133,7 @@ msgstr "No es proporcionen les credencials amb la configuració." - msgid "Invalid password or login." - msgstr "La contrasenya o l'usuari no són vàlids." - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2208,20 +2219,20 @@ msgstr "" - "\n" - "Si no s'especifica, el FITXERCONF per defecte està a " - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "Adjunta els FITXERs [a la incidència amb aquest Id.]" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." --msgstr "No es pot obrir el directori del problema '%s'." -+msgstr "No es pot obrir el directori del problema «%s»." - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "S'estan cercant problemes similars al MantisBT" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." -@@ -2229,84 +2240,84 @@ msgstr "" - "No es pot obtenir l'Id. de MantisBT perquè aquest problema encara no ha " - "estat informat a MantisBT." - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" --"Aquest problema ha estat informat al MantisBT '%s' que difereix del MantisBT " --"configurat '%s'." -+"Aquest problema ha estat informat al MantisBT «%s» que difereix del MantisBT " -+"configurat «%s»." - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." --msgstr "URL mal formada al MantisBT '%s'." -+msgstr "URL amb format dolent al MantisBT «%s»." - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" --msgstr "S'està utilitzant l'Id. de MantisBT '%s'" -+msgstr "S'està utilitzant l'Id. de MantisBT «%s»" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" --msgstr "S'està adjuntant el fitxer '%s' a la incidència %s" -+msgstr "S'està adjuntant el fitxer «%s» a la incidència %s" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " - "to create a new issue?" - msgstr "" --"Ja es va informar d'aquest problema al MantisBT (consulteu '%s' ). Encara " -+"Ja es va informar d'aquest problema al MantisBT (consulteu «%s»). Encara " - "voleu crear una nova incidència?" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "S'està creant una nova incidència" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "El format del fitxer no és vàlid: %s" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "Ha fallat la formatació de les dades del problema" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" --msgstr "S'està afegint l'URL externa a la incidència" -+msgstr "S'està afegint l'URL extern a la incidència" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "S'estan afegint els adjunts a la incidència %i" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "Fitxer de format duplicat no vàlid: '%s" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - "Ha fallat la formatació del comentari duplicat des de les dades del problema" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "S'està afegint un nou comentari a la incidència %d" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" --"S'ha trobat el mateix comentari en l'històric de la incidencia, no se " -+"S'ha trobat el mateix comentari en l'històric de la incidència, no se " - "n'afegeix cap de nou" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "Estat: %s%s%s %s/view.php?id=%u" -@@ -2345,18 +2356,27 @@ msgstr "" - "contrasenya del compte del rastrejador d'errors de programari de CentOS" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 -+msgid "Restric access" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 - msgid "CentOS Bug Tracker URL" - msgstr "URL del rastrejador d'errors de programari de CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "Adreça del servidor del rastrejador d'errors de programari de CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "Projecte del rastrejador d'errors de programari de CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" -@@ -2364,11 +2384,11 @@ msgstr "" - "Únicament especifiqueu-ho si necessiteu un projecte diferent de " - "l'especificat a /etc/os-release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "Versió del projecte del rastrejador d'errors de programari de CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" -@@ -2376,15 +2396,6 @@ msgstr "" - "Únicament especifiqueu-ho si necessiteu una versió de projecte diferent de " - "l'especificada a /etc/os-release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" --"Restringeix l'accés a la incidència creada al rastrejador d'errors de " --"programari de CentOS permetent que únicament ho vegin els usuaris dels grups " --"indicats (consulteu els ajustos avançats per a més detalls)" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2459,7 +2470,7 @@ msgstr "Correu electrònic del destinatari" - - #: ../src/plugins/report_Mailx.xml.in.h:9 - msgid "Send Binary Data" --msgstr "Envia les dades binaries" -+msgstr "Envia les dades binàries" - - #: ../src/plugins/report_Mailx.xml.in.h:10 - msgid "Send binary files like coredump" -@@ -2499,7 +2510,7 @@ msgstr "" - - #: ../src/plugins/report_RHTSupport.xml.in.h:11 - msgid "RH Portal URL" --msgstr "Url del protal RH" -+msgstr "URL del portal RH" - - #: ../src/plugins/report_RHTSupport.xml.in.h:12 - msgid "Address of the Red Hat support portal" -@@ -2511,7 +2522,7 @@ msgstr "Eina per pujar l'informe" - - #: ../src/plugins/report_Uploader.xml.in.h:2 - msgid "Upload as tar.gz file (via FTP/SCP/...)" --msgstr "Puja-ho com un fitxer tar.gz (a través de FTP/SCP/...)" -+msgstr "Puja-ho com un fitxer tar.gz (a través d'FTP/SCP/...)" - - #: ../src/plugins/report_Uploader.xml.in.h:3 - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:3 -@@ -2523,7 +2534,7 @@ msgid "" - "Where do you want to upload the tarball with report in form login:" - "password@url" - msgstr "" --"On voleu pujar el tarball amb l'informe, amb el format usuari:" -+"On voleu pujar l'arxiu tar amb l'informe, amb el format usuari:" - "contrasenya@url" - - #: ../src/plugins/report_Uploader.xml.in.h:5 -@@ -2553,6 +2564,22 @@ msgstr "Servidor intermediari d'FTP" - msgid "Sets the proxy server to use for FTP" - msgstr "Estableix el servidor intermediari a utilitzar per a l'FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2612,7 +2639,7 @@ msgstr "" - #: ../src/plugins/rhbz.c:382 - #, c-format - msgid "Looks like corrupted xml response, because '%s' member is missing." --msgstr "Sembla una resposta xml corrupta degut a que manca el membre '%s'" -+msgstr "Sembla una resposta xml corrupta perquè hi falta el membre «%s»." - - #: ../src/plugins/rhbz.c:470 - #, c-format -@@ -2625,27 +2652,27 @@ msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - "L'error de programari %i s'ha TANCAT com a DUPLICAT, però no té l'ID_DUP" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" --"S'ha solicitat la creació d'un tiquet privat, pero no es van especificar els " -+"S'ha solicitat la creació d'un tiquet privat, però no es van especificar els " - "grups, si us plau, per a més informació consulteu https://github.com/abrt/" - "abrt/wiki/FAQ#creating-private-bugzilla-tickets" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Id. del nou error de programari: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla no ha pogut trobar el pare de l'error de programari %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "El valor de retorn de Bug.search(quicksearch) no contenia cap membre 'bugs'" -@@ -2760,52 +2787,52 @@ msgstr "No s'ha especificat l'URL o la sol·licitud." - #: ../src/plugins/mantisbt.c:673 - #, c-format - msgid "Error in HTTP POST, HTTP code: 404 (Not found), URL:'%s'" --msgstr "Error al POST d'HTTP, codi d'HTTP: 404 (No trobat), URL:'%s'" -+msgstr "Error al POST d'HTTP, codi d'HTTP: 404 (No trobat), URL:«%s»" - - #: ../src/plugins/mantisbt.c:697 - #, c-format - msgid "Error in MantisBT request at '%s': %s" --msgstr "Error en la sol·licitud de MantisBT a '%s': %s" -+msgstr "Error en la sol·licitud de MantisBT a «%s»: %s" - - #: ../src/plugins/mantisbt.c:699 - #, c-format - msgid "Error in MantisBT request at '%s'" --msgstr "Error en la sol·licitud de MantisBT a '%s'" -+msgstr "Error en la sol·licitud de MantisBT a «%s»" - - #: ../src/plugins/mantisbt.c:741 - #, c-format - msgid "Failed to attach file: '%s'" --msgstr "Ha fallat l'adjunció del fitxer: '%s'" -+msgstr "Ha fallat l'adjunció del fitxer: «%s»" - - #: ../src/plugins/mantisbt.c:760 - #, c-format - msgid "Can't lseek '%s'" --msgstr "No es pot fer lseek '%s'" -+msgstr "No es pot fer lseek «%s»" - - #: ../src/plugins/mantisbt.c:766 - #, c-format - msgid "Can't upload '%s', it's too large (%llu bytes)" --msgstr "No es pot pujar '%s', és massa gran (%llu bytes)" -+msgstr "No es pot pujar «%s», és massa gran (%llu bytes)" - - #: ../src/plugins/mantisbt.c:776 - #, c-format - msgid "Can't read '%s'" --msgstr "No es pot llegir '%s'" -+msgstr "No es pot llegir «%s»" - - #: ../src/plugins/mantisbt.c:792 - #, c-format - msgid "Can't open '%s'" --msgstr "No es pot obrir '%s'" -+msgstr "No es pot obrir «%s»" - - #: ../src/plugins/mantisbt.c:859 - #, c-format - msgid "Failed to search MantisBT issue by duphash: '%s'" --msgstr "Ha fallat la cerca de la incidència de MantisBT amb el duphash: '%s'" -+msgstr "Ha fallat la cerca de la incidència de MantisBT amb el duphash: «%s»" - - #: ../src/plugins/mantisbt.c:903 - #, c-format - msgid "Failed to search MantisBT duplicate issue: '%s'" --msgstr "Ha fallat la cerca de la incidència duplicada de MantisBT: '%s'" -+msgstr "Ha fallat la cerca de la incidència duplicada de MantisBT: «%s»" - - #: ../src/plugins/mantisbt.c:930 - #, c-format -@@ -2813,23 +2840,23 @@ msgid "" - "MantisBT doesn't contain custom field '%s', which is required for full " - "functionality of the reporter. Do you still want to create a new issue?" - msgstr "" --"MantisBT no conté el camp personalitzat '%s', que és necessari per a la " -+"MantisBT no conté el camp personalitzat «%s», que és necessari per a la " - "funcionalitat total de l'informador. Encara voleu creu la nova incidència?" - - #: ../src/plugins/mantisbt.c:954 - #, c-format - msgid "Failed to get custom fields for '%s' project" --msgstr "Ha fallat l'obtenció dels camps personalitzats del projecte '%s' " -+msgstr "Ha fallat l'obtenció dels camps personalitzats del projecte «%s»" - - #: ../src/plugins/mantisbt.c:998 - #, c-format - msgid "Failed to create a new issue: '%s'" --msgstr "Ha fallat la creació de la nova incidència: '%s'" -+msgstr "Ha fallat la creació de la nova incidència: «%s»" - - #: ../src/plugins/mantisbt.c:1024 - #, c-format - msgid "Failed to get MantisBT issue: '%s'" --msgstr "Ha fallat l'obtenció de la incidència de MantisBT: '%s'" -+msgstr "Ha fallat l'obtenció de la incidència de MantisBT: «%s»" - - #: ../src/plugins/mantisbt.c:1038 - #, c-format -@@ -2844,7 +2871,7 @@ msgstr "La incidència %i s'ha TANCAT com a DUPLICADA, però no té l'ID_DUP" - #: ../src/plugins/mantisbt.c:1083 - #, c-format - msgid "Failed to add MantisBT issue note: '%s'" --msgstr "Ha fallat l'afegiment de la nota de la incidència de MantisBT: '%s'" -+msgstr "Ha fallat l'afegiment de la nota de la incidència de MantisBT: «%s»" - - #: ../src/plugins/mantisbt.c:1097 - msgid "The MantisBT project has not been deretmined." -@@ -2854,41 +2881,41 @@ msgstr "No s'ha determinat el projecte de MantisBT." - msgid "Failed to get project id from name" - msgstr "Ha fallat l'obtenció de l'Id. del projecte des del nom" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Especifica l'URL del servidor" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Permet la connexió no segura al servidor uReport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Utilitza l'autentificació del client" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "Utilitza l'autentificació d'HTTP" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "Fitxers addicions que s'inclouen en la clau 'auth'" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "bthash de l'uReport a adjuntar (entra amb conflicte amb -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "adjunta a un bthash del reported_to (entra amb conflicte amb -A)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - "adreça de correu electrònic de contacte (requereix -a|-A, entra amb " - "conflicte amb -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2896,33 +2923,57 @@ msgstr "" - "adreça de correu electrònic de contacte des de l'entorn o des del fitxer de " - "configuració (requereix -a|-A, entra amb conflicte amb -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - "adjunta l'error de programari RHBZ (requereix -a|-A, entra amb conflicte amb " - "-B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "adjunta l'error de programari RHBZ des de reported_to (requereix -a|-A, " - "entra amb conflicte amb -b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "adjunta un text breu (requereix -a|-A, entra amb conflicte amb -D)" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - "adjunta un text breu des del comentari (requereix -a|-A, entra amb conflicte " - "amb -d)" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2930,46 +2981,47 @@ msgid "" - "\n" - "Reads the default configuration from " - msgstr "" --"& [-v] [-c FITXER] [-u URL] [-k] [-t ORIGEN] [-h CREDENCIALS]\n" --" [-A -a bthash -B -b id-error-programari -E -e correu-electrònic -O -o " --"comentari] [-d DIR]\n" --"& [-v] [-c FITXER] [-u URL] [-k] [-t ORIGEN] [-h CREDENCIALS] [-i " --"ÍTEMS_AUTENTICACIÓ] [-d DIR]\n" --"\n" --"Puja el micro informe o afegeix un adjunt al micro informe\n" --"\n" --"Llegeix la configuració per defecte de " - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Aquest problema no té assignat un uReport." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Aquest problema no ha estat informat al Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" --"No es pot trobar l'Id. de l'error de programari en l'URL del bugzilla '%s'" -+"No es pot trobar l'id. de l'error de programari en l'URL del bugzilla «%s»" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" --"No es pot analitzar sintàcticament l'Id. de l'error de programari des de " --"l'URL del bugzilla '%s'" -+"No es pot analitzar sintàcticament l'id. de l'error de programari des de " -+"l'URL del bugzilla «%s»" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "No es pot adjuntar el comentari des del fitxer 'comment'" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "El fitxer 'comment' està buit" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2977,21 +3029,21 @@ msgstr "" - "No s'ha establert ni la variable d'entorn 'uReport_ContactEmail' ni l'opció " - "de configuració 'ContactEmail'" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - "Necessiteu especificar un Id. de l'error de programari, un correu electrònic " - "de contacte, un comentari o tots ells" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Heu d'especificar el bthash de l'uReport a adjuntar." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "No s'està pujant un uReport buit" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Aquest problema ja ha estat informat." - -diff --git a/po/cs.po b/po/cs.po -index 6bfab6a..df10b69 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -22,7 +22,7 @@ msgstr "" - "cs/)\n" - "Language: cs\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -179,46 +179,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Extrahování cpio z {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Nelze zapisovat do '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Nelze rozbalit balíček '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Nelze rozbalit soubory z '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Nelze odstranit '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Stahování ({0} z {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -226,118 +223,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Hledání potřebných balíčků v repozitářích" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Nelze najít balíčky pro {0} debuginfo soubory" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Balíčky ke stažení: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Stahování {0:.2f}Mb, velikost instalovaných: {1:.2f}Mb. Pokračovat?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Stahování bylo zrušeno uživatelem" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Stahování balíčku {0} selhalo" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Rozbalování selhalo, ruším stahování..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Odstraňování {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Chyba inicializace yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Nelze zablokovat repositář '{0!s}': {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Nelze nastavit {0}: {1}, zakazuji" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Chyba při načítání metadat: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Chyba při načítání seznamu souborů: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -386,7 +390,7 @@ msgstr "Události" - msgid "C_onfigure" - msgstr "_Nastavit" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -412,7 +416,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -491,7 +495,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Náhradní soubor s GUI" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -500,53 +504,53 @@ msgstr "" - "Potřebujete adresář s možností zápisu, ale do '%s' nelze zapisovat. " - "Přesunout do '%s' a pracovat na přesunutých datech?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Zobrazit/Upravit testový soubor" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(vyžaduje: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(nedůležité, data již existují: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(kliknout zde pro zobrazení/úpravy)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binární soubor, %'llu bajtů)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(žádný popis)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%'llu bajtů, %'u souborů" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -555,7 +559,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -563,7 +567,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -575,75 +579,48 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Zpracování se nezdařilo." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Zpracování dokončeno." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Zpracování dokončeno, přejděte prosím na další krok." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Pro událost „%s“ není určen způsob zpracování" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "Zpracování přerušeno: nelze pokračovat bez zapisovatelného adresáře." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Zpracování ..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -652,99 +629,107 @@ msgstr "" - "Událost '%s' vyžaduje oprávnění k odeslání potenciálně citlivých informací.\n" - "Chcete pokračovat?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "„%s“ není obyčejný soubor" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Pokoušíte se kopírovat soubor na sebe sama" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Nelze zkopírovat „%s“: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Položka „%s“ již existuje a není možné ji upravovat" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Vložit" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Název" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Hodnota" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Popis problému" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Poskytnutí dodatečných informací" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Zkontrolujte data" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Schválit data k odeslání hlášení" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Zpracování" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Zpracování provedeno" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Podrobnosti" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -793,26 +778,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -822,7 +787,7 @@ msgstr "" - "analyzovat problém (bude-li to nutné), zobrazí se shrnutí sesbíraných dat a " - "zvolíte, kam bude problém nahlášen. Pro pokračování klikněte na 'Další'." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -832,11 +797,11 @@ msgstr "" - "nějaké další užitečné informace k diagnostice problému? Pokud je to možné, " - "použijte prosím angličtinu." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Musíte nejprve vyplnit, jak se to stalo." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -844,31 +809,31 @@ msgstr "" - "Vaše komentáře nejsou soukromé. Mohou být vloženy do veřejně " - "přístupných hlášení o chybách." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Nevím, co způsobilo tento problém" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Velikost:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Přiložit soubor" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Zkontroloval jsem data a _souhlasím s jejich odesláním" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -879,19 +844,19 @@ msgstr "" - " Běžné položky potřebné pro zkoumání jsou výpisy volání (backtrace), " - "příkazová řádka a proměnné prostředí." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Zpracování ještě nezačalo" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Zobrazit Log" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Hlášení bylo dokončeno. Okno můžete nyní zavřít." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -900,16 +865,15 @@ msgstr "" - "Chcete-li nahlásit problém jinam, doplnit informace, poskytnout lepší " - "vysvětlení a zopakovat ohlášení, stiskněte tlačítko 'Další'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -935,89 +899,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "a" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Chybí požadovaná položka: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Chybí požadovaná položka: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Odesláno: %llu z %llu kilobytů" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Odesílání %s na %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s v pořádku odesláno na %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Chybí povinná hodnota" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Neplatný UTF-8 znak „%c“" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Neplatné číslo „%s“" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Neplatná pravdivostní hodnota „%s“" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Nepodporovaný druh přepínače" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Prosím nahlášte problém s Abrt projektovým vývojářům." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1025,84 +1030,109 @@ msgstr "" - "Výpis volání není úplný, prosím ujistěte se, že jste dostatečně popsaly " - "postup, jak problém vyvolat." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Odeslání hlášení není povoleno, protože výpis volání je nepoužitelný." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "Správné debuginfo je pravděpodobně chybé nebo je poškozen coredump." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1133,21 +1163,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1230,49 +1273,69 @@ msgid "Bugzilla account password" - msgstr "Heslo Bugzilla účtu" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL Bugzilly" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Adresa Bugzilla serveru" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Kontrola SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Kontrola platnosti SSL klíče" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1281,8 +1344,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1291,8 +1354,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1301,8 +1364,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1311,27 +1374,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1360,13 +1402,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1381,7 +1423,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1396,7 +1438,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1431,76 +1473,95 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Konfigurační soubor (může být uveden několikrát)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Přiloží SOUBOR [k chybě s ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Při vytváření chybového hlášení přiložte také binární soubory" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Vynutit hlášení, i když je tento problém již hlášený" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1508,82 +1569,104 @@ msgstr "" - "Nelze najít Bugzilla ID, protože tento problém ještě nebyl do Bugzilly " - "hlášen." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Odhlašování" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Kontrola duplikátů" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Vytváření hlášení nové chyby" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Přidávání příloh do chyby %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Chyba je již nahlášena: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Vkládání nového komentáře k chybě %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Připojení lepšího backtrace" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "Nalezen stejný komentář v historii chyby, není třeba přidávat nový" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Stav: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1608,7 +1691,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Konfigurační soubor" - -@@ -1638,12 +1721,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Odesílání e-mailu..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Email byl zaslán na: %s " - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1657,11 +1740,11 @@ msgstr "" - "\n" - "Pokud není specifikováno, CONFFILE výchozí " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Konfigurační soubor" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Pouze upozornit (Hlášení neoznačovat jako odeslané)" - -@@ -1696,34 +1779,34 @@ msgstr "Zrušeno uživatelem." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Nelze otevřít '%s' pro zápis. Vyberte prosím jiný soubor:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Hlášení bylo připojeno k %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Hlášení bylo uloženo v %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Ještě pořád chcete vytvořit lístek RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1732,77 +1815,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Nahrát SOUBORy [k případu s tímto ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Přikládání „%s“ k případu „%s“" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Komprese dat" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1815,41 +1902,49 @@ msgstr "Dokumentace, která může mít význam:" - msgid "Updates which possibly help: " - msgstr "Aktualizace, které možná pomohou:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Archív je vytvořen: „%s“" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Základní URL odeslat do" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1866,7 +1961,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1909,48 +2004,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1958,47 +2053,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2034,39 +2129,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2228,6 +2326,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2293,24 +2407,24 @@ msgstr "Chyba %i je UZAVŘENA, ale nemá ŘEŠENÍ" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Chyba %i je UZAVŘENA jako DUPLIKÁT, ale nemá DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "ID nové chyby: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla nemůže nalézt rodiče chyby %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2503,65 +2617,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Vložte URL serveru" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Povolit nezabezpečené připojení k ureport serveru" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2570,51 +2708,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Tento problém nebyl hlášen do Bugzilly." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/da.po b/po/da.po -index b1008b6..21699c1 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/da/)\n" - "Language: da\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -173,46 +173,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -220,118 +217,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -380,7 +384,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -406,7 +410,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -485,60 +489,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternativ GUI-fil" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(klik her for at se/redigere)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binærfil, %llu byte)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(ingen beskrivelse)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu byte, %u filer" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -547,7 +551,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -555,7 +559,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -567,174 +571,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Ingen behandling for begivenheden \"%s\" er defineret" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Navn" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Værdi" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detaljer" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -783,44 +768,24 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -828,66 +793,65 @@ msgstr "" - "Dine kommentarer er ikke private. De kan inkluderes i offentligt " - "synlige fejlrapporter." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Størrelse:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -913,89 +877,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "j" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Mangler påkrævet værdi" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Ugyldig utf8-tegn \"%c\"" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Ugyldigt nummer \"%s\"" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Ugyldig boolesk værdi \"%s\"" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Ikke understøttet tilvalgstype" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1003,84 +1008,109 @@ msgstr "" - "Backtracen er ikke komplet, vær sikker på at du angiver trinene til at " - "reproducere fejlen." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Rapportering er deaktiveret fordi backtracen er ubrugelig." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1111,21 +1141,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1206,49 +1249,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1257,8 +1320,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1267,8 +1330,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1277,8 +1340,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1287,27 +1350,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1336,13 +1378,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1357,7 +1399,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1372,7 +1414,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1407,157 +1449,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1582,7 +1665,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1612,12 +1695,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1626,11 +1709,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1662,34 +1745,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1698,77 +1781,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1781,41 +1868,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1832,7 +1927,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1875,48 +1970,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1924,47 +2019,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2000,39 +2095,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2194,6 +2292,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2259,24 +2373,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2469,65 +2583,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2536,51 +2674,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/de.po b/po/de.po -index acafb88..2e3303c 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -14,21 +14,22 @@ - # DerDerwish , 2011 - # noxin , 2014 - # Roman Spirgi , 2015. #zanata -+# Roman Spirgi , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-24 04:13-0400\n" -+"PO-Revision-Date: 2016-02-09 04:15-0500\n" - "Last-Translator: Roman Spirgi \n" - "Language-Team: German (http://www.transifex.com/projects/p/libreport/" - "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.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -194,87 +195,86 @@ msgstr "Auszuführende Aktion wählen:" - msgid "Select a workflow to run: " - msgstr "Workflow wählen:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Cpio extrahieren von {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Nach »{0}« konnte nicht geschrieben werden: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Paket »{0}« konnte nicht extrahiert werden" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Dateien cachen von {0} erstellt von {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Dateien von »{0}« konnten nicht extrahiert werden" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" -+"Dateien von »{0}« konnten nicht extrahiert werden. Weitere Hinweise unter " -+"»{1}«" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "»{0}« konnte nicht entfernt werden: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Herunterladen ({0} von {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" --msgstr "" -+msgstr "Paketverwaltung initialisieren" - - #. if verbose == 0: - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" --msgstr "" -+msgstr "Paketquellen einrichten" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Benötigte Pakete werden in Repositorys gesucht" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Pakete für {0} Debuginfo-Dateien konnten nicht gefunden werden" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Herunterzuladene Pakete: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "Herunterladen von {0:.2f} MB, installierte Größe: {1:.2f} MB. Fortfahren?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Download durch Benutzer abgebrochen" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -282,7 +282,7 @@ msgstr "" - "Warnung: Nicht genug freier Speicherplatz in temporärem Verzeichnis '{0}' " - "({1:.2f} MB frei). Fortfahren?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -291,38 +291,47 @@ msgstr "" - "Warnung: Nicht genug freier Speicherplatz in Cache-Verzeichnis '{0}' ({1:." - "2f} MB frei). Fortfahren?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Herunterladen von Paket {0} ist fehlgeschlagen" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Entpacken fehlgeschlagen, Download wird abgebrochen ..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+"»{0}« gehört zu abrt. Befehl »# chown -R abrt.abrt {0}« ausführen, um dies " -+"zu beheben." -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Entfernen von {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" --msgstr "" -+msgstr "{0} kann nicht entfernt werden, enthält möglicherweise ein Fehler-Log" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" --msgstr "" -+msgstr "Fehler beim Lesen der Paketquellen-Konfiguration: '{0!s}'" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" --msgstr "" -+msgstr "Fehler beim Einrichten der Softwarequellen: »{0!s}«" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -330,38 +339,38 @@ msgstr "" - "Während dem Herunterladen ist ein »{0!s}«-Problem aufgetreten: '{1!s}'. " - "Erneuter Versuch auf einem anderen Spiegel-Server." - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Fehler beim Initialisieren von Yum (YumBase.doConfigSetup): »{0!s}«" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Chachedir konnte nicht erzeugt werden, es wird abgebrochen" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Paketquelle konnte nicht deaktiviert werden »{0!s}«: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Asynchroner Download kann nicht deaktiviert werden, die Ausgabe kann Fehler " - "enthalten!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0} konnte nicht eingerichtet werden: {1}, wird deaktiviert" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Fehler beim Abrufen der Metadaten: »{0!s}«" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Fehler beim Abrufen der Dateiliste: »{0!s}«" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "Datei '{0}' kann nicht kopiert werden: {1}" -@@ -410,7 +419,7 @@ msgstr "Ereignisse" - msgid "C_onfigure" - msgstr "K_onfigurieren" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Schließen" - -@@ -438,7 +447,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Abbrechen" - -@@ -527,7 +536,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternative GUI-Datei" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -536,15 +545,15 @@ msgstr "" - "Schreibbares Verzeichnis ist erforderlich, doch »%s« ist schreibgeschützt. " - "Nach »%s« verschieben und auf der verschobenen Kopie fortfahren?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Textdatei ansehen/bearbeiten" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "_Sichern" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -552,39 +561,39 @@ msgstr "" - "Keine Ziele für die Berichterstattung dieses Problems definiert. Überprüfen " - "Sie die Konfiguration in /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(benötigt: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(nicht nötig, »%s« existiert bereits)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(zum Anzeigen/Bearbeiten hier klicken)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(Binärdatei, %llu Bytes)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(keine Beschreibung)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu Bytes, %u Dateien" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Vorgang wurde abgebrochen" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -598,7 +607,7 @@ msgstr "" - "\t▫ Korrupte Fehlerdaten\n" - "\t▫ Ungültige Konfiguration" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -610,7 +619,7 @@ msgstr "" - "Menu Einstellungen im Anwendungsmenu und klicken Sie nach dem Sichern " - "der Konfigurationsänderungen auf die Wiederholen-Schaltfläche." - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -630,82 +639,57 @@ msgstr "" - "Die hochgeladenen Daten werden in einem geschützten Speicherbereich abgelegt " - "und nur eine beschränkte Anzahl Personen hat Zugriff darauf." - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "Die Verarbeitung wurde unterbrochen, weil der Fehler nicht berichtet werden " - "kann." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Verarbeitung fehlgeschlagen." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Verarbeitung abgeschlossen." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - "Verarbeitung beendet, bitte fahren Sie mit dem nächsten Schritt weiter." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Keine Verarbeitung für Ereignis »%s« definiert" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Verarbeitung unterbrochen: Kein Schreibberechtigung für Verzeichnis " - "vorhanden." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Verarbeitung läuft..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+"Möglicherweise sind sensitive Daten im Fehlerbericht enthalten. Der " -+"Fehlerbericht kann entsprechend angepasst werden." -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Backtrace-Bewertung konnte wegen eines ungültigen Ablauf-Namens nicht " - "überprüft werden" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -715,101 +699,109 @@ msgstr "" - "zu senden. \n" - "Möchten Sie fortfahren?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Dieses Problem muss nicht gemeldet werden (es ist wahrscheinlich ein " - "bekanntes Problem). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Öffnen" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "»%s« ist keine gewöhnliche Datei" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Sie versuchen, eine Datei auf sich selbst zu kopieren" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "»%s« kann nicht kopiert werden: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Element »%s« existiert bereits und ist nicht veränderbar" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Einbeziehen" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Name" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Wert" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Problembeschreibung" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Wählen Sie, wie dieser Fehler gemeldet werden soll" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Weitere Informationen" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Daten überprüfen" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Zu berichtende Daten bestätigen" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Verarbeitung läuft" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Verarbeitung abgeschlossen" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "_Anhalten" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Hochladen für Analyse" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "Wiederholen" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Vorwärts" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Details" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Zugriff auf den Bericht einschränken" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -861,30 +853,6 @@ msgstr "Suche" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" --"Möglicherweise sind sensitive Daten im Fehlerbericht enthalten. Der " --"Fehlerbericht kann entsprechend angepasst werden." -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Zugriff auf den Bericht einschränken" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Niemanden, mit Ausnahme der Fedora Contrib Group-Mitglieder, wird es möglich " --"sein, den Bericht mit beschränktem Zugriff zu sehen (Auch Sie nicht)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Erfahren Sie mehr über Berichte mit beschränktem Zugriff" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -895,7 +863,7 @@ msgstr "" - "die gesammelten Daten zu überprüfen, und zu wählen, wo das Problem berichtet " - "werden soll. Klicken Sie auf »Vor« um fortzufahren." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -905,13 +873,13 @@ msgstr "" - "reproduzieren? Haben Sie weitere Hinweise zur Eingrenzung des Problems? " - "Bitte nutzen Sie, wenn möglich, Englisch." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - "Sie müssen angeben, wie verfahren werden soll, bevor Sie fortfahren können..." - "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -919,31 +887,31 @@ msgstr "" - "Ihre Kommentare sind nicht privat. Sie können in öffentlich sichtbare " - "Fehlerberichte einbezogen werden." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Falls Sie nicht wissen, wie Sie ihn beschreiben sollen, können Sie " - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "Einen Screencast hinzufügen" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Ich weiß nicht, was dieses Problem verursacht hat" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Größe:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Datei anhängen" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Ich habe die Daten überprüft und _stimme der Übertragung zu" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -954,20 +922,20 @@ msgstr "" - "haben. Backtrace, Befehlszeile und Umgebungsvariablen sind die üblichen " - "Elemente, die untersucht werden müssen." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Verarbeitung wurde noch nicht gestartet" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Protokoll anzeigen" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - "Berichterstellung abgeschlossen. Sie können dieses Fenster jetzt schließen." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -977,16 +945,15 @@ msgstr "" - "Information sammeln oder eine bessere Problembeschreibung angeben möchten, " - "klicken Sie auf »Vor«, um den Vorgang der Berichterstellung zu wiederholen." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Ausführlich protokollieren" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Problem-Verzeichnis" - -@@ -1012,78 +979,119 @@ msgstr "Kein Fehlerverzeichnis" - msgid "Can't delete '%s': %s" - msgstr "»%s« kann nicht gelöscht werden: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "j" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Benötigtes Objekt ist nicht vorhanden: »%s«" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "UID-Wert ist ungültig: »%s«" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Benötigtes Objekt ist nicht vorhanden: »%s«" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Übertragen: %llu von %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s wird an %s gesendet" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" --msgstr "Benutzername für »%s« angeben:" -+msgid "Please enter user name for '%s//%s':" -+msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" --msgstr "Passwort für »%s« angeben:" -+msgid "Please enter password for '%s//%s@%s':" -+msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s wurde erfolgreich an %s gesendet" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Fehlender erforderlicher Wert" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Ungültiges UTF8-Zeichen »%c«" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Ungültige Zahl »%s«" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Ungültige Boolesche Variable »%s«" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Nicht unterstützter Optionstyp" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1092,11 +1100,11 @@ msgstr "" - "Der Fehler kann nicht gemeldet werden aufgrund fehlerhafter Daten. »%s« " - "Datei enthält keine Nummer." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Bitte melden Sie dieses Problem an die ABRT-Projektentwickler." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1104,17 +1112,17 @@ msgstr "" - "Der Backtrace ist unvollständig, bitte stellen Sie sicher, dass Sie alle " - "Schritte zum Reproduzieren angeben." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "Diese Ablaufverfolgung kann Entwicklern bei der Fehlerdiagnose vermutlich " - "nicht weiterhelfen." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Berichterstellung deaktiviert, da der Backtrace unbrauchbar ist." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1123,12 +1131,27 @@ msgstr "" - "Bitte versuchen Sie, debuginfo manuell mit dem Befehl »debuginfo-install %s« " - "zu installieren und versuchen Sie es erneut." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "Vermutlich fehlt eine korrekte Debuginfo oder der Coredump ist beschädigt" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1137,27 +1160,37 @@ msgstr "Ihr Fehler scheint durch %s verursacht worden zu sein\n" - "\n" - " %s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Ihr Problem scheint eine der folgenden Ursachen zu haben:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "Hochladen des uReport zum Server »%s« mit curl: %s fehlgeschlagen" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "Die URL »%s« ist nicht vorhanden (Server-Fehlermeldung 404)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - "Der Server bei »%s« hat einen internen Fehler festgestellt (Fehler 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" -@@ -1165,34 +1198,34 @@ msgstr "" - "503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "Unerwartete HTTP-Antwort von »%s«: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - "Antwort des uReport-Servers unter »%s« konnte nicht verarbeitet werden" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "Die Antwort von »%s« weist ein ungültiges Format auf" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "Unterschied des Typs in der Antwort von »%s« festgestellt" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Fehlerbericht konnte nicht übertragen werden" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "Der Server bei »%s« hat mit einer Fehlermeldung geantwortet: »%s«" -@@ -1224,21 +1257,34 @@ msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - "Stacktrace-Beschreibung kann nicht erstellt werden (Kein Absturz-Thread?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "(»%s« wurde durch %u-Impuls beendet)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "(»%s« erfolgreich abgeschlossen)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "(»%s« abgebrochen durch %u)\n" -@@ -1329,32 +1375,57 @@ msgid "Bugzilla account password" - msgstr "Bugzilla Account-Passwort" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Zugriff einschränken" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Zugriff auf den erstellten Bugzilla-Fehlerbericht beschränken, so dass " -+"dieser nur von Nutzern bestimmter Gruppen eingesehen werden kann (siehe " -+"erweiterte Einstellungen für weitere Details)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Gruppen" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Zugriff auf bestimmte Gruppen beschränken <a href=\"https://github.com/" -+"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla-URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Adresse des Bugzilla-Servers" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL überprüfen" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Gültigkeit des SSL-Schlüssels überprüfen" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla-Produkt" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1362,11 +1433,11 @@ msgstr "" - "Spezifizieren Sie dies nur dann, wenn Sie ein anderes Projekt benötigen, als " - "unter /etc/os-release angegeben." - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla-Produkteversion" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1374,8 +1445,8 @@ msgstr "" - "Spezifizieren Sie dies nur dann, wenn Sie eine andere Projektversion " - "benötigen, als unter /etc/os-release angegeben." - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1384,8 +1455,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP-Proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1394,8 +1465,8 @@ msgstr "HTTP-Proxy" - msgid "Sets the proxy server to use for HTTP" - msgstr "Proxy-Server für HTTP festlegen" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1404,8 +1475,8 @@ msgstr "Proxy-Server für HTTP festlegen" - msgid "HTTPS Proxy" - msgstr "HTTPS-Proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1414,32 +1485,6 @@ msgstr "HTTPS-Proxy" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Proxy-Server für HTTPS festlegen" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Zugriff einschränken" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Zugriff auf den erstellten Bugzilla-Fehlerbericht beschränken, so dass " --"dieser nur von Nutzern bestimmter Gruppen eingesehen werden kann (siehe " --"erweiterte Einstellungen für weitere Details)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Gruppen" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Zugriff auf bestimmte Gruppen beschränken <a href=\"https://github.com/" --"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1480,13 +1525,13 @@ msgstr "" - "Umgebungsvariable und Konfiguration wird ignoriert" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Fortfahren ohne Login nicht möglich" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Fortfahren ohne Passwort nicht möglich" -@@ -1498,10 +1543,10 @@ msgstr "Anmelden bei Bugzilla unter %s" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "Ungültiges Passwort oder Login. Bitte geben Sie Ihren Bugzilla-Login ein:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1517,7 +1562,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1551,119 +1596,91 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Fehler an Bugzilla melden.\n" --"\n" --"Diese Anwendung liest das Fehlerverzeichnis DIR. Danach loggt es sich \n" --"in Bugzilla ein und versucht einen Fehler mit dem gleichen \n" --"abrt_hash:HEXSTRING-Wert in »Whiteboard« zu finden.\n" --"\n" --"Falls ein solcher Fehler noch nicht berichtet wurde , wird ein neuer \n" --"Fehlerbericht erstellt. Dateien aus DIR werden als Teil der " --"Fehlerbeschreibung \n" --"oder als Anhang gespeichert, abhängig vom Typ und Größe.\n" --"\n" --"Falls bereits ein Fehlerbericht existiert der mit CLOSED DUPLICATE markiert\n" --"ist, folgt die Anwendung der Kette der vorhandenen Fehlerberichte bis zum \n" --"non-DUPLICATE-Fehlerbericht. Die Anwendung fügt diesem einen weiteren \n" --"Kommentar hinzu.\n" --"\n" --"Die URL des neuen oder geänderten Fehlerberichtes wird an stdout ausgegeben \n" --"und im »Gemeldet an«-Element (»reported_to«) abgelegt.\n" --"\n" --"Option -t fügt dem bereits vorhandenen Bugzilla-Fehlerbericht weitere " --"Dateien\n" --"(FILE) an. Die ID des Fehlerberichts wird mit -d DIR aus dem entsprechenden \n" --"Verzeichnis gelesen. Falls die Fehlerdaten in DIR zuvor nicht an Bugzilla \n" --"berichtet wurden, schlägt das Hochladen fehl. \n" --"\n" --"Option -tID fügt dem Fehlerbericht mit der entsprechenden ID weitere \n" --"Dateien (FILE) an. -d DIR wird ignoriert.\n" --"\n" --"Option -w fügt den Bugzilla-Benutzer zur CC-Liste des Fehlerberichtes hinzu.\n" --"\n" --"Option -r setzt die letzte Url vom »reporter_to« Element mit dem Präfix\n" --"TRACKER_NAME auf URL Feld. Diese Option wird nur angewendet, wenn ein\n" --"neuer Fehlerbericht eingereicht wird. Der Standardwert ist »ABRT Server«\n" --"\n" --"Falls nicht spezifiziert, ist CONFFILE standardmäßig " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Konfigurationsdatei (kann mehrmals angegeben werden)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Vorbereiten der Datei für erste Anmerkung" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Vorbereiten der Datei für Duplikate" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILEs anhängen [an Fehlerbericht mit dieser ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Beim Erstellen des Fehlerberichts auch Binärdateien anhängen" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - "Berichten erzwingen, selbst wenn dieses Problem bereits gemeldet wurde" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - "Bugzilla-Benutzer zu CC-Liste hinzufügen [an Fehlerbericht mit dieser ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "BUG_ID anzeigen, welche DUPHASH erzeugt hat" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "Name vom Bug-Tracker für zusätzliche URL von »reported_to«" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Zugriff nur auf diese Gruppe beschränken" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Fehlersuche" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Auf Bugzilla nach ähnlichen Fehlern suchen" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" --"Login ist in der Konfiguration nicht angegeben. Bitte geben Sie Ihren Bugzilla-" --"Login ein:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1672,7 +1689,7 @@ msgstr "" - "Password ist in der Konfiguration nicht angegeben. Bitte geben Sie das " - "Passwort für »%s« ein:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1680,7 +1697,7 @@ msgstr "" - "Bugzilla-ID kann nicht ausgelesen werden, da dieser Fehler noch nicht an " - "Bugzilla gemeldet wurde." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1689,78 +1706,100 @@ msgstr "" - "Dieser Fehler wurde an Bugzilla gemeldet »%s«. Dies unterscheidet sich zu " - "konfiguriertem Bugzilla »%s«." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Fehlerhafte URL an Bugzilla »%s«." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID »%s« verwenden" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Abmelden" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - "Aufgrund der Fehlerdaten kann das Bugzilla-Projekt nicht bestimmt werden." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Überprüfen auf Duplikate" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Neuer Fehlerbericht wird erstellt" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Erstellung eines neuen Fehlerberichts fehlgeschlagen." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Externe URL wird zu Bug %i hinzugefügt" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Anhänge werden an Fehlerbericht %i angefügt" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Fehler wurde bereits eingereicht: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s zu CC-Liste hinzufügen" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Neuen Kommentar zu Fehler %d hinzufügen" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Besserer Backtrace wird hinzugefügt" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Identischer Kommentar in Fehlerchronik gefunden, kein neuer Kommentar wird " - "hinzugefügt" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Status: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1796,7 +1835,7 @@ msgstr "" - "werden." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Konfigurationsdatei" - -@@ -1828,12 +1867,12 @@ msgstr "E-Mail-Benachrichtigung senden an: %s" - msgid "Sending an email..." - msgstr "Senden der E-Mail..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "E-Mail wurde gesendet an: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1847,11 +1886,11 @@ msgstr "" - "\n" - "Falls nicht spezifiziert, ist KONFDATEI standardmäßig " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Konfigurationsdatei" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - "Nur benachrichtigen (Diesen Report nicht als übermittelt kennzeichnen)" -@@ -1889,35 +1928,35 @@ msgstr "" - "»%s« kann nicht zum Schreiben geöffnet werden. Bitte wählen Sie eine andere " - "Datei:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Der Bericht wurde an %s angehängt" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Der Bericht wurde unter %s gespeichert" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "Der Server hat mit einer Fehlermeldung geantwortet: »%s«" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Möchten Sie noch immer ein RHTSupport-Ticket erstellen?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - "Ungültiges Passwort oder Login. Bitte geben Sie Ihren Red Hat-Login ein:" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1925,90 +1964,86 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-v] [-c CONFFILE] -d DIR\n" --"or:\n" --"& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" --"\n" --"Fehler an RHTSupport übermitteln.\n" --"\n" --"Falls nicht definiert, ist CONFFILE standardmäßig" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILEs übertragen [an Fall mit dieser ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "Vor Neuerstellung eines Fehlerberichtes uReport übertragen" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "Konfigurationsdatei für uReport" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "Login ist in der Konfiguration nicht angegeben. Bitte geben Sie Ihren RHTS-" - "Login ein:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "»%s« wird an Fall »%s« angehängt" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "ABRT-Absturzstatistik-Daten senden" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Es kann kein temporäres Verzeichnis erstellt werden in" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Daten werden komprimiert" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Es kann kein temporäres Verzeichnis erstellt werden in" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Temporäre Datei kann nicht erstellt werden in " - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Suche nach Hinweisen" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Einen neuen Bericht erstellen" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - "RH-Support-Projekt kann aufgrund der Fehlerdaten nicht bestimmt werden." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "Eintrag der ABRT-Absturzstatistiken mit dem Fehlerbericht verknüpfen" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - "Eintrag der ABRT-Absturzstatistiken mit Kontakt-E-Mail verknüpfen: »%s«" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Hinzufügen des Kommentars zu Fehlerbericht »%s«" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Fehlerdaten zu Bericht »%s« hinzufügen" -@@ -2021,54 +2056,58 @@ msgstr "Möglicherweise relevante Dokumentation: " - msgid "Updates which possibly help: " - msgstr "Möglicherweise hilfreiche Updates: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Ohne URL kann nicht fortgesetzt werden" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" --"Bitte eine URL angeben (scp, ftp, etc.), wohin die Fehlerdaten exportiert " --"werden sollen:" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "Für das Hochladen Passwort eingeben:" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Archiv wurde erstellt: »%s«" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"Lädt komprimierten Tarball des Problemverzeichnisses DIR an URL hoch.\n" --"Falls URL nicht spezifiziert ist, wird Tarball erstellt in " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Basis-URL, an die übertragen wird" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+"Bitte eine URL angeben (scp, ftp, etc.), wohin die Fehlerdaten exportiert " -+"werden sollen:" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" --msgstr "" -+msgstr "Bitte Ihren MantisBT-Login eingeben:" - - #: ../src/plugins/reporter-mantisbt.c:86 - msgid "Please enter the password for" --msgstr "" -+msgstr "Bitte Passwort eingeben für" - - #: ../src/plugins/reporter-mantisbt.c:97 - msgid "Credentials are not provided by configuration." -@@ -2076,9 +2115,9 @@ msgstr "" - - #: ../src/plugins/reporter-mantisbt.c:121 - msgid "Invalid password or login." --msgstr "" -+msgstr "Ungültiges Passwort oder Login" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2121,48 +2160,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2170,47 +2209,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2246,39 +2285,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2449,6 +2491,22 @@ msgstr "FTP-Proxy" - msgid "Sets the proxy server to use for FTP" - msgstr "Proxy-Server für FTP festlegen" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2517,7 +2575,7 @@ msgstr "Fehler %i ist CLOSED, hat jedoch keine RESOLUTION" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Fehler %i ist CLOSED als DUPLICATE, hat jedoch keine DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2528,18 +2586,18 @@ msgstr "" - "com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets für weitere " - "Informationen" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Neue Fehler-ID: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - "Bugzilla konnte keinen übergeordneten Fehlerbericht für Fehler %d finden" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Antwort von Bug.search(quicksearch) enthält keine angehängten Fehlerberichte" -@@ -2733,39 +2791,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Server-URL angeben" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Erlaube die unsichere Verbindung zum ureport-Server" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Client-Authentifizierung verwenden" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "Zusätzliche im »Auth«-Schlüssel enthaltene Daten" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "Anzuhängender bthash von uReport (kollidiert mit -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "Anhängen an bthash von »reported_to« (kollidiert mit -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "Kontakt-E-Mail-Adresse (erfordert -a|-A, kollidiert mit -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2773,29 +2831,53 @@ msgstr "" - "Kontakt-E-Mail-Adresse von Umgebung oder Konfigurationsdatei (erfordert -a|-" - "A, kollidiert mit -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ-Fehler anhängen (erfordert -a|-A, kollidiert mit -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "Letzten RHBZ-Fehler anhängen von »reported_to« (erfordert -a|-A, kollidiert " - "mit -b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "Kurztext anfügen (benötigt -a|-A, widerspricht -d)" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "Kurztext aus Kommentar anfügen (benötigt -a|-A, widerspricht -d)" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2804,33 +2886,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Dieses Problem hat keinen zugewiesenen uReport." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Dieses Problem wurde nicht an Bugzilla gemeldet." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Fehler-ID konnte aus der Bugzilla-URL »%s« nicht gelesen werden" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Fehler-ID konnte nicht aus der Bugzilla-URL »%s «gelesen werden" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "Kommentar aus »Kommentar«-Datei kann nicht hinzugefügt werden" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "»Kommentar«-Datei ist leer" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2838,19 +2930,19 @@ msgstr "" - "Weder die Umgebungsvariable »uReport_ContactEmail« noch die " - "Konfigurationsoption »ContactEmail« wurde festgelegt" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "Fehler-ID, Kontakt-E-Mail oder Kommentar muss angegeben werden" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Sie müssen den Bthash des uReport angeben, um Anhang zu erstellen" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Ein leerer uReport kann nicht hochgeladen werden" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Dieses Problem wurde bereits gemeldet." - -diff --git a/po/el.po b/po/el.po -index b45b6f5..07ef8e8 100644 ---- a/po/el.po -+++ b/po/el.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -17,7 +17,7 @@ msgstr "" - "el/)\n" - "Language: el\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -169,46 +169,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -216,118 +213,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -376,7 +380,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -402,7 +406,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -481,60 +485,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -543,7 +547,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -551,7 +555,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -563,174 +567,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Όνομα" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Λεπτομέρειες" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -777,109 +762,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -905,172 +869,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1101,21 +1131,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1196,49 +1239,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1247,8 +1310,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1257,8 +1320,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1267,8 +1330,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1277,27 +1340,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1326,13 +1368,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1347,7 +1389,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1362,7 +1404,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1397,157 +1439,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1572,7 +1655,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1602,12 +1685,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1616,11 +1699,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1652,34 +1735,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1688,77 +1771,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1771,41 +1858,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1822,7 +1917,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1865,48 +1960,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1914,47 +2009,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1990,39 +2085,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2184,6 +2282,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2249,24 +2363,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2459,65 +2573,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2526,51 +2664,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/en_GB.po b/po/en_GB.po -index a333f2e..978302c 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "libreport/language/en_GB/)\n" - "Language: en-GB\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -174,46 +174,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -221,118 +218,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -381,7 +385,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -407,7 +411,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -486,60 +490,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternate GUI file" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "View/edit a text file" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(click here to view/edit)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binary file, %llu bytes)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(no description)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bytes, %u files" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -548,7 +552,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -556,7 +560,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -568,174 +572,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "No processing for event '%s' is defined" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' is not an ordinary file" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "You are trying to copy a file onto itself" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Can't copy '%s': %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Item '%s' already exists and is not modifiable" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Include" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Name" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Value" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Problem description" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Provide additional information" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Confirm data to report" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Details" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -784,26 +769,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -814,18 +779,18 @@ msgstr "" - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "You need to fill the how to before you can proceed..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -833,31 +798,31 @@ msgstr "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Size:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Attach a file" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "I reviewed the data and _agree with submitting it" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -867,19 +832,19 @@ msgstr "" - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Reporting has finished. You can close this window now." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -889,16 +854,15 @@ msgstr "" - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -924,89 +888,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Uploaded: %llu of %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Sending %s to %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Missing mandatory value" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Invalid utf8 character '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Invalid number '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Invalid boolean value '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Unsupported option type" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1014,84 +1019,109 @@ msgstr "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Reporting disabled because the backtrace is unusable." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1122,21 +1152,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1219,49 +1262,69 @@ msgid "Bugzilla account password" - msgstr "Bugzilla account password" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Address of Bugzilla server" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Verify SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Check SSL key validity" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1270,8 +1333,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1280,8 +1343,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1290,8 +1353,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1300,27 +1363,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1349,13 +1391,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1370,7 +1412,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1385,7 +1427,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1420,157 +1462,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Configuration file (may be given many times)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Attach FILEs [to bug with this ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "When creating bug, attach binary files too" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Logging out" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Checking for duplicates" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Creating a new bug" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Bug is already reported: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Adding new comment to bug %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1595,7 +1678,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Configuration file" - -@@ -1625,12 +1708,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Sending an e-mail..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1639,11 +1722,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Config file" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1675,34 +1758,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "The report was appended to %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "The report was stored to %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1711,77 +1794,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Upload FILEs [to case with this ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Attaching '%s' to case '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Compressing data" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1794,41 +1881,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Archive is created: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Base URL to upload to" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1845,7 +1940,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1888,48 +1983,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1937,47 +2032,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2013,39 +2108,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2209,6 +2307,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2274,24 +2388,24 @@ msgstr "Bug %i is CLOSED, but it has no RESOLUTION" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "New bug id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla couldn't find parent of bug %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2484,65 +2598,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2551,51 +2689,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/es.po b/po/es.po -index 1cb5b8f..1f3deaa 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -15,21 +15,22 @@ - # Gladys Guerrero , 2014 - # Hugo Jiménez Hernández , 2011, 2012 - # Alex Puchades , 2015. #zanata -+# Máximo Castañeda Riloba , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-03-10 05:50-0400\n" --"Last-Translator: Alex Puchades \n" -+"PO-Revision-Date: 2015-09-30 04:21-0400\n" -+"Last-Translator: Máximo Castañeda Riloba \n" - "Language-Team: Spanish (http://www.transifex.com/projects/p/libreport/" - "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.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -46,15 +47,15 @@ msgstr "" - #. short_name long_name value parameter_name help - #: ../src/cli/cli.c:86 - msgid "List possible events [which start with PREFIX]" --msgstr "Lista los posibles eventos [que inician con PREFIX]" -+msgstr "Lista los posibles eventos [que comienzan por PREFIJO]" - - #: ../src/cli/cli.c:87 ../src/gui-wizard-gtk/main.c:172 - msgid "Run only these events" --msgstr "Ejecutar estos eventos solamente" -+msgstr "Ejecuta estos eventos solamente" - - #: ../src/cli/cli.c:88 ../src/gui-wizard-gtk/main.c:171 - msgid "Remove PROBLEM_DIR after reporting" --msgstr "Elimine el DIR_PROBLEMA después de informar" -+msgstr "Eliminar el DIR_PROBLEMA después de informar" - - #: ../src/cli/cli.c:89 ../src/gui-wizard-gtk/main.c:173 - msgid "Expert mode" -@@ -66,15 +67,15 @@ msgstr "Muestra la versión y sale" - - #: ../src/cli/cli.c:91 - msgid "Noninteractive: don't ask questions, assume 'yes'" --msgstr "No interactivo: no haga preguntas: suponga 'sí'" -+msgstr "No interactivo: supone que se responde 'sí' a todas las preguntas" - - #: ../src/cli/cli.c:93 - msgid "Log to syslog" --msgstr "Registro en syslog" -+msgstr "Registra en syslog" - - #: ../src/cli/cli.c:94 ../src/gui-wizard-gtk/main.c:170 - msgid "Add program names to log" --msgstr "Agregue el nombre del programa al log" -+msgstr "Agrega el nombre del programa al log" - - #: ../src/cli/cli-report.c:132 - #, c-format -@@ -137,7 +138,7 @@ msgstr "" - - #: ../src/cli/cli-report.c:183 - msgid "# os-release configuration file" --msgstr "# archvio de configuración os-release" -+msgstr "# archivo de configuración os-release" - - #: ../src/cli/cli-report.c:188 - msgid "# Release string of the operating system" -@@ -175,15 +176,16 @@ msgid "" - "Event '%s' requires permission to send possibly sensitive data. Do you want " - "to continue?" - msgstr "" --"El evento '%s' necesita permiso para enviar datos. ¿Quieres continuar?" -+"El evento '%s' necesita permiso para enviar datos que podrían contener " -+"información confidencial. ¿Quiere continuar?" - - #: ../src/cli/cli-report.c:720 - msgid "You have chosen number out of range" --msgstr "Usted eligió un número de opción fuera del rango" -+msgstr "Eligió un número de opción fuera del rango" - - #: ../src/cli/cli-report.c:725 - msgid "Invalid input, exiting." --msgstr "Entrada invalida, saliendo." -+msgstr "Entrada inválida, saliendo." - - #: ../src/cli/cli-report.c:746 - msgid "Select an event to run: " -@@ -191,175 +193,182 @@ msgstr "Seleccione un evento a ejecutar:" - - #: ../src/cli/cli-report.c:858 - msgid "Select a workflow to run: " --msgstr "Seleccione un evento a ejecutar:" -+msgstr "Seleccione un flujo a ejecutar:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" --msgstr "Extrayendo copio desde {0}" -+msgstr "Extrayendo cpio de {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "No se puede crear '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "No se puede extraer paquete '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" --msgstr "Almacenando en cache archivos de '{0}' creados en {1} " -+msgstr "Almacenando en caché archivos de {0} creados desde {1} " - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "No se pueden extraer archivos de '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" -+"No se pueden extraer archivos de '{0}'. Para más información vea '{1}'" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" --msgstr "No se pueden retirar '{0}': {1}" -+msgstr "No se puede borrar '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" --msgstr "Descargando ({0} of {1}) {2}: {3:3}%" -+msgstr "Descargando ({0} de {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" --msgstr "" -+msgstr "Inicializando el gestor de paquetes" - - #. if verbose == 0: - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" --msgstr "" -+msgstr "Configurando repositorios" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Buscando en repositorios los paquetes necesarios" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "No se pueden encontrar paquetes para {0} archivos de depuración" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Paquetes a descargar: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Descargando {0:.2f}Mb, tamaño instalado: {1:.2f}Mb. ¿Continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Descarga cancelada por usuario" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" --"Advertencia: No hay suficiente espacio libre en dir tmp '{0}' ({1:.2f}Mb " --"left). ¿Desea continuar?" -+"Advertencia: No hay suficiente espacio libre en el directorio temporal '{0}' " -+"(quedan {1:.2f}Mb). ¿Desea continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" --"Advertencia: No hay suficiente espacio libre en dir tmp '{0}' ({1:.2f}Mb " --"left). ¿Desea continuar?" -+"Advertencia: No hay suficiente espacio libre en el directorio de caché '{0}' " -+"(quedan {1:.2f}Mb). ¿Desea continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" --msgstr "Descarga de paquete {0} falló" -+msgstr "Falló la descarga del paquete {0}" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." --msgstr "Desempaque falló, abortando descarga" -+msgstr "La extracción falló; abortando descarga..." -+ -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+"abrt debe ser propietario de '{0}'. Por favor ejecute '# chown -R abrt.abrt " -+"{0}' para corregirlo." - - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" --msgstr "Retirando {0}" -+msgstr "Eliminando {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" --msgstr "" -+msgstr "No se puede eliminar %s, probablemente contenga un registro de error" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" --msgstr "" -+msgstr "Error al leer la configuración del repositorio: '{0!s}'" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" --msgstr "" -+msgstr "Error al configurar repositorios: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" --"Ocurrió el problema '{0!s}' mietras descargaba del espejo: '{1!s}'. " -+"Ocurrió el problema '{0!s}' mientras descargaba del espejo: '{1!s}'. " - "Intentando con el siguiente" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Error al inicializar yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Error: no se puede crear cachedir, saliendo" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "No se pudo deshabilitar el repositorio '{0!s}': {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "No se pudo deshabilitar la descarga asincrónica, ¡la salida puede ser " - "ilegible!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "No se puede configurar {0}: {1}, inhabilitando" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Error al recuperar metadatos: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" --msgstr "Error al recuperar listas de archivos:'{0!s}'" -+msgstr "Error al recuperar listas de archivos: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "No se puede copiar el archivo '{0}': {1}" -@@ -408,7 +417,7 @@ msgstr "Eventos" - msgid "C_onfigure" - msgstr "C_onfiguración" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Cerrar" - -@@ -435,7 +444,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Cancelar" - -@@ -448,8 +457,7 @@ msgstr "_Aceptar" - #, c-format - msgid "Can't connect over DBus to name '%s' path '%s' interface '%s': %s" - msgstr "" --"No se puede conectar a través de DBus para nombrar '%s' ruta '%s' interfaz " --"'%s': %s" -+"No se puede conectar a través de DBus a '%s' ruta '%s' interfaz '%s': %s" - - #: ../src/gtk-helpers/secrets.c:191 - #, c-format -@@ -463,15 +471,15 @@ msgid "" - "A timeout was reached while waiting for a prompt result from the DBus Secret " - "Service." - msgstr "" --"Se llegó al limite del tiempo de espera de una respuesta del servicio " --"secreto DBus." -+"Se llegó al limite del tiempo de espera de una respuesta del Servicio " -+"Secreto DBus." - - #: ../src/gtk-helpers/secrets.c:552 - msgid "" - "Do you want to stop waiting and continue in reporting without properly " - "loaded configuration?" - msgstr "" --"¿Desea dejar de esperar y continuar con el reporte sin cargar apropiadamente " -+"¿Desea dejar de esperar y continuar con el informe sin cargar apropiadamente " - "la configuración?" - - #: ../src/gtk-helpers/secrets.c:862 -@@ -483,7 +491,7 @@ msgstr "El método ReadAlias('%s') del Servicio Secreto por D-Bus falló: %s" - #: ../src/gtk-helpers/secrets.c:1104 - #, c-format - msgid "Can't create a secret item for event '%s': %s" --msgstr "No se pudo crear un item secreto para el evento '%s': %s" -+msgstr "No se pudo crear un ítem secreto para el evento '%s': %s" - - #: ../src/gtk-helpers/secrets.c:1286 - #, c-format -@@ -519,31 +527,31 @@ msgid "" - msgstr "" - "& [-vpdx] [-e EVENTO]... [-g ARCHIVO_GUI] PROBLEMA_DIR\n" - "\n" --"GUI herramienta para análisis y reporte de problemas guardado en directorio " --"especificado PROBLEMA_DIR" -+"Herramienta gráfica para analizar e informar del problema guardado en " -+"PROBLEMA_DIR" - - #: ../src/gui-wizard-gtk/main.c:169 - msgid "Alternate GUI file" - msgstr "Archivo alterno de GUI" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" --"Necesita directorio de escritura, pero '%s' no lo es. ¿Desea desplazar '%s' " --"y operar en los datos desplazados?" -+"Necesita un directorio en el que se pueda escribir, pero '%s' no lo es. " -+"¿Desea llevarlo a '%s' y operar en los datos desplazados?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Ver o editar archivo de texto" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "_Guardar" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -551,39 +559,39 @@ msgstr "" - "No hay destinatario de informe definido para este problema. Verifique la " - "configuración en /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(se requiere: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(no es necesario, los datos ya existen: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" --msgstr "(Haga clic aquí para ver/editar)" -+msgstr "(pulse aquí para ver/editar)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(archivo binario, %llu bytes)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(no hay descripción)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bytes, %u archivos" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "El proceso fue cancelado" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -592,12 +600,12 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - "Falló el informe de errores. Esto puede deberse a muchas razones, las más " --"usuales comunes son:\n" -+"habituales son:\n" - "\t▫ problemas de conexión de red\n" --"\t▫ problemas de corrupción de dator\n" -+"\t▫ problemas de corrupción de datos\n" - "\t▫ configuración inválida" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -607,9 +615,9 @@ msgstr "" - "Si desea cambiar la configuración e intentar elaborar un informe de nuevo, " - "seleccione Preferencias\n" - "en el menú de aplicación y, tras aplicar los cambios en la configuración " --"haga click en Repetir." -+"pulse en Repetir." - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -622,7 +630,7 @@ msgid "" - msgstr "" - "Si está seguro de que el problema no fue debido a problemas de conexión de " - "red ni a una configuración inválida\n" --"y quiere ayudarnos, haga click en \"Enviar\" para proporcionar toda la " -+"y quiere ayudarnos, pulse en \"Enviar\" para proporcionar toda la " - "información relacionada con el problema para su análisis profundo.\n" - "Pero por favor, tenga en cuenta los riesgos. Esta información puede " - "incluir datos sensibles como\n" -@@ -630,105 +638,55 @@ msgstr "" - "almacenamiento seguro al que sólo tendrá acceso un limitado número de " - "personas." - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "El procesamiento se interrumpió debido a que el problema no es reportable." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." --msgstr "El proceso ha fallado" -+msgstr "El proceso ha fallado." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." --msgstr "Proceso finalizado" -+msgstr "Proceso finalizado." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." --msgstr "Proceso finalizado, favor de proceder con el siguiente paso" -- --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"Se solicitó un informe privado pero el grupo 'private' está obsoleto. Le " --"recomendamos que utilice 'fedora_contrib_private' como nombre de grupo. Haga " --"click en Sí o cambie la configuración de forma manual. O haga click en No, " --"si quiere seguir utilizando el grupo 'private'.\n" --"\n" --"Si no sabe lo que significa este diálogo, confíe en nosotros y haga click en " --"Sí.\n" --"\n" --"Puede leer más sobre los informes privados de error en:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"Se solicitó un informe privado pero el grupo private está obsoleto. " --"Le recomendamos que utilice fedora_contrib_private como nombre de " --"grupo. Haga click en Sí o cambie la configuración de forma manual. O haga " --"click en No, si quiere seguir utilizando el grupo private.\n" --"\n" --"Si no sabe lo que significa este diálogo, confíe en nosotros y haga click en " --"Sí.\n" --"\n" --"Puede leer más sobre los informes privados de error en:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -+msgstr "Procesamiento finalizado, por favor continúe con el siguiente paso." - - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "No se define proceso para evento '%s'" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "El proceso ha sido interrumpido: no se puede continuar sin un directorio " - "donde escribir." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Procesando..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+"Se ha detectado lo que podría ser información sensible, si lo desea puede " -+"editar el informe y eliminarla." -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" --"No se pudo verificar la tasa de retrotrazado debido al nombre de evento " -+"No se pudo comprobar la calidad de la traza debido a un nombre de evento " - "inválido" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -737,101 +695,109 @@ msgstr "" - "El evento '%s' requiere de permisos para enviar posibles datos sensibles.\n" - "¿Desea continuar?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Este problema no se debe reportar (probablemente sea un problema conocido). " - "%s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Abrir" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' no es un archivo común" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Está intentando copiar un archivo en sí mismo" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "No se puede copiar '%s': %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" --msgstr "Elemento '%s' ya existe y no se puede modificar" -+msgstr "El elemento '%s' ya existe y no se puede modificar" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Incluya" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nombre" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Valor" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Descripción del problema" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" --msgstr "Selecciona como enviar este problema" -+msgstr "Seleccionar cómo enviar este problema" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Proporcionar información adicional" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Revisar los datos" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" --msgstr "Confirmar datos que se van a reportar" -+msgstr "Confirmar datos que se van a enviar" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Procesando" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Proceso terminado" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "_Detener" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" --msgstr "Cargando para análisis" -+msgstr "Enviar para análisis" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "Repetir" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Siguiente" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detalles" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Restringir acceso al informe" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -839,8 +805,9 @@ msgid "" - "\n" - "su -c \"yum install fros-recordmydesktop\"" - msgstr "" --"Para activar la funcionalidad de screencast el paquete fros-recordmydesktop " --"debe ser instalado. Para instalarlo, ejecute el siguiente comando.\n" -+"Para activar la funcionalidad de grabación de pantalla debe tener instalado " -+"el paquete fros-recordmydesktop. Para instalarlo, ejecute el siguiente " -+"comando.\n" - "\n" - "su -c \"yum install fros-recordmydesktop\"" - -@@ -849,16 +816,16 @@ msgid "" - "Use this button to generate more informative backtrace after you installed " - "additional debug packages" - msgstr "" --"Utilice este botón para generar más trazado informativo después de que haya " --"instalada los paquetes de depuración adicionales." -+"Utilice este botón para generar trazas más informativas tras haber instalado " -+"los paquetes de depuración adicionales" - - #: ../src/gui-wizard-gtk/wizard.glade.h:2 - msgid "" - "Please review the data before it gets reported. Depending on reporter " - "chosen, it may end up publicly visible." - msgstr "" --"Por favor, revise los datos antes de informarlos. Dependiendo del informador " --"elegido, puede terminar siendo de acceso público." -+"Por favor, revise los datos antes de enviarlos. Dependiendo del informador " -+"elegido, pueden terminar siendo de acceso público." - - #: ../src/gui-wizard-gtk/wizard.glade.h:3 - msgid "Sensitive words" -@@ -887,129 +854,104 @@ msgstr "Buscar" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" --"Posible información sensible detectada, si lo desea puede editar el informe " --"y eliminarla." -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Restringir acceso al reporte" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Nadie, a excepción de los miembros del grupo Fedora Contrib, podrá ver el " --"informe con acceso restringido (ni siquiera usted)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Lea más sobre reportes con acceso restringido" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" --"En las siguiente pantallas, se le solicitará una descripción de cómo ocurrió " --"el problema, para elegir cómo analizar el problema (si es necesario), " --"revisar los datos colectados, y elegir a dónde debe ser reportado el " --"problema. Haga clic en 'Siguiente' para continuar." -+"En las siguiente pantallas se le solicitará una descripción de cómo ocurrió " -+"el problema, la elección de cómo analizarlo (si es necesario), revisar los " -+"datos recogidos y elegir a dónde debe ser enviado el problema. Pulse " -+"'Siguiente' para continuar." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" --"¿Cómo sucedió este problema (paso a paso)?¿Cómo se puede reproducir? ¿Desea " --"añadir otros comentarios para diagnosticar el problema? Por favor utilice " -+"¿Cómo sucedió este problema (paso a paso)? ¿Cómo se puede reproducir? ¿Desea " -+"añadir otros comentarios para diagnosticar el problema? Por favor utilice el " - "Inglés en lo posible." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." --msgstr "Necesita llenar cómo desea proceder..." -+msgstr "Debe rellenar la descripción de cómo sucedió antes de continuar..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" --"Sus comentarios no son confidenciales. Pueden incluirse en reportes " -+"Sus comentarios no son confidenciales. Pueden incluirse en informes " - "de problemas visibles al público." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" --msgstr "Si no sabes como se describe, puedes" -+msgstr "Si no sabe cómo describirlo puede" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "agregar una grabación de pantalla" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" --msgstr "No se qué causó este problema" -+msgstr "No sé qué causó este problema" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Tamaño:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" --msgstr "Adjunte un archivo" -+msgstr "Adjuntar un archivo" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" --msgstr "Revisé los datos y _estoy de acuerdo con enviarlo" -+msgstr "Revisé los datos y _estoy de acuerdo con enviarlos" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" --"Si está reportando a un servidor remoto, asegúrese de haber retirado todos " --"los datos privados (tales como nombres de usuario y contraseñas). " --"Seguimiento, línea de comandos, variables de entorno y los elementos típicos " --"que se necesitan examinar." -+"Si está enviando a un servidor remoto, asegúrese de haber retirado todos los " -+"datos privados (tales como nombres de usuario y contraseñas). Las trazas, " -+"línea de comandos y variables de entorno son los elementos típicos a " -+"comprobar." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" --msgstr "El proceso aún no comienza" -+msgstr "El proceso aún no comenzó" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Mostrar registro" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." --msgstr "El informa ha terminado. Puede cerrar " -+msgstr "El informe ha terminado. Puede cerrar." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" --"Si desea reportar el problema a un destino diferente, recoja toda la " --"información adicional o proporcione una mejor descripción del problema y " --"repita el proceso del reporte, presione 'Siguiente'." -+"Si desea enviar el problema a un destino diferente, recoger información " -+"adicional o proporcionar una mejor descripción del problema y repetir el " -+"proceso, pulse 'Siguiente'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Sea profuso" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Directorio del problema" - -@@ -1035,125 +977,180 @@ msgstr "no es un directorio de problema" - msgid "Can't delete '%s': %s" - msgstr "No se puede borrar '%s': %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "s" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" --msgstr "f" -+msgstr "o" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Falta un elemento obligatorio: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "el valor uid no es válido: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Falta un elemento obligatorio: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" --msgstr "Cargado: %llu of %llu kbytes" -+msgstr "Enviados: %llu de %llu kbytes" -+ -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" - --#: ../src/lib/curl.c:635 -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Enviando %s a %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" --msgstr "Introduzca su nombre de usuario para '%s':" -+msgid "Please enter user name for '%s//%s':" -+msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" --msgstr "Introduzca su contraseña para '%s':" -+msgid "Please enter password for '%s//%s@%s':" -+msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Enviado correctamente %s a %s" -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Falta un campo obligatorio" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" --msgstr "Carácter utf8 inválido '%c'" -+msgstr "Carácter utf8 inválido '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" --msgstr "Número '%s' inválido" -+msgstr "Número inválido '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Valor booleano inválido '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Tipo de opción no soportada" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" --"El problema no se puede informar porque hay datos inválidos. El archivo '%s' " -+"El problema no se puede enviar porque hay datos inválidos. El archivo '%s' " - "no contiene un número." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" --"Favor de reportar este problema a los desarrolladores del proyecto ABRT." -+"Por favor, informe de este problema a los desarrolladores del proyecto ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" --"El trazado está incompleto, por favor, asegúrese de proveer bien los pasos " --"para reproducir el error." -+"La traza no está completa. Por favor, asegúrese de indicar los pasos para " -+"reproducir el error." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" --"El retrotrazado probablemente no ayude a los desarroladores a diagnosticar " --"el error." -+"Probablemente la traza no ayude a los desarrolladores a diagnosticar el " -+"error." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Creación de informes inhabilitada debido a que el trazado es inútil." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" --"Favor de intentar instalar debuginfo manualmente con el siguiente omando: " --"\"debuginfo-install %s\" e intente de nuevo." -+"Por favor intente instalar la información de depuración manualmente con el " -+"siguiente comando: \"debuginfo-install %s\" y vuelva a probar." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" --"Probablemente haga falta un archivo de depuración o el coredump está " --"corrupto." -+"Probablemente falte un archivo de depuración o el volcado esté corrupto." -+ -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1162,63 +1159,72 @@ msgstr "Su problema parece haber sido causado por %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Su problema parece haber sido causado por algo de lo siguiente:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" --msgstr "Fallo al subir uReport al servidor ‘%s’ con curl: %s" -+msgstr "Fallo al enviar el uReport al servidor '%s' con curl: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" --msgstr "La URL ‘%s' no existe (obteniendo error 404 del servidor)" -+msgstr "La URL '%s' no existe (error 404)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" --msgstr "El servidor en ‘%s’ encontró un error interno (obtuvo error 500)" -+msgstr "El servidor en '%s' encontró un error interno (error 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" --"El servidor en '%s' no puede manejar actualmente la solicitud (obtuvo el " --"error 503)" -+"El servidor en '%s' no puede manejar actualmente la solicitud (error 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "Respuesta HTTP inesperada desde '%s': %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "No se pudo analizar la respuesta del servidor ureport en '%s'" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" --msgstr "La respuesta desde ‘%s’ tiene formato no válido" -+msgstr "La respuesta de '%s' no tiene un formato válido" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" --msgstr "Se ha detectado un desajuste de tipo en la respuesta desde ‘%s’" -+msgstr "Se ha detectado un desajuste de tipo en la respuesta de '%s'" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" --msgstr "Fallo al presentar el problema" -+msgstr "Fallo al enviar el problema" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" --msgstr "El servidor en ‘%s’ respondió con un error: ‘%s’" -+msgstr "El servidor en '%s' respondió con un error: '%s'" - - #: ../src/lib/make_descr.c:149 ../src/lib/make_descr.c:160 - msgid "Reported:" -@@ -1230,7 +1236,7 @@ msgstr "no puede ser reportado" - - #: ../src/lib/parse_options.c:63 - msgid "Usage: " --msgstr "Uso:" -+msgstr "Uso: " - - #: ../src/lib/problem_data.c:252 - #, c-format -@@ -1240,30 +1246,42 @@ msgstr "Falta elemento esencial '%s', no se puede continuar" - #: ../src/lib/problem_report.c:477 - #, c-format - msgid "Can't parse backtrace: %s" --msgstr "No se pudo analizar el backtrace: %s" -+msgstr "No se pudo analizar la traza: %s" - - #: ../src/lib/problem_report.c:488 --#, fuzzy - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" --"No se pudo generar la descripción del trazado de la pila (¿habrá algún " --"thread colgado?)" -+"No se pudo generar la descripción del trazado de la pila (¿no tenemos el " -+"hilo de la caída?)" -+ -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" - - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" --msgstr "" -+msgstr "Aviso: no contiene nivel de calidad" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" --msgstr "('%s' fue matado por señal %u)\n" -+msgstr "('%s' matado mediante señal %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' completado con éxito)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' salió con %u)\n" -@@ -1271,50 +1289,50 @@ msgstr "('%s' salió con %u)\n" - #: ../src/plugins/abrt_rh_support.c:356 - #, c-format - msgid "Error in case creation at '%s': %s" --msgstr "Error en la creación del caso en ‘%s’: %s" -+msgstr "Error en la creación del caso en '%s': %s" - - #: ../src/plugins/abrt_rh_support.c:365 - #, c-format - msgid "Error in case creation at '%s', HTTP code: %d, server says: '%s'" - msgstr "" --"Error en la creación del cado en ‘%s’, código HTTP: %d, el servidor dice: " --"‘%s’" -+"Error en la creación del caso en '%s', código HTTP: %d, el servidor dice: " -+"'%s'" - - #: ../src/plugins/abrt_rh_support.c:369 - #, c-format - msgid "Error in case creation at '%s', HTTP code: %d" --msgstr "Error en la creación del caso en ‘%s’, código HTTP: %d" -+msgstr "Error en la creación del caso en '%s', código HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:420 - #, c-format - msgid "Error in case creation at '%s': no Location URL, HTTP code: %d" - msgstr "" --"Error en la creación del caso en ‘%s’: no URL de Localización, código HTTP: " --"%d" -+"Error en la creación del caso en '%s': no se devuelve URL de Localización, " -+"código HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:524 - #, c-format - msgid "Error in comment creation at '%s': %s" --msgstr "Error en creación de comentario en ‘%s’: %s" -+msgstr "Error en creación de comentario en '%s': %s" - - #: ../src/plugins/abrt_rh_support.c:533 - #, c-format - msgid "Error in comment creation at '%s', HTTP code: %d, server says: '%s'" - msgstr "" --"Error en creación de comentario en ‘%s’, código HTTP: %d, el servidor dice: " --"‘%s’" -+"Error en creación de comentario en '%s', código HTTP: %d, el servidor dice: " -+"'%s'" - - #: ../src/plugins/abrt_rh_support.c:537 - #, c-format - msgid "Error in comment creation at '%s', HTTP code: %d" --msgstr "Error en creación de comentario en ‘%s’, código HTTP: %d" -+msgstr "Error en creación de comentario en '%s', código HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:583 - #, c-format - msgid "Error in comment creation at '%s': no Location URL, HTTP code: %d" - msgstr "" --"Error en creación de comentario en ‘%s’: sin URL de Localización, código " --"HTTP: %d" -+"Error en creación de comentario en '%s': no se devuelve URL de Localización, " -+"código HTTP: %d" - - #: ../src/plugins/report_Bugzilla.xml.in.h:1 - msgid "Bugzilla" -@@ -1322,7 +1340,7 @@ msgstr "Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:2 - msgid "Report to Bugzilla bug tracker" --msgstr "Reportar el rastreo de errores de Bugzilla" -+msgstr "Enviar informe a Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:3 - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:3 -@@ -1339,7 +1357,7 @@ msgid "" - "You can create bugzilla.redhat.com account <a href=\"https://bugzilla." - "redhat.com/createaccount.cgi\">here</a>" - msgstr "" --"Puede crear la cuenta de bugzilla.redhat.com<a href=\"https://bugzilla." -+"Puede crear una cuenta de bugzilla.redhat.com <a href=\"https://bugzilla." - "redhat.com/createaccount.cgi\">aquí</a>" - - #: ../src/plugins/report_Bugzilla.xml.in.h:6 -@@ -1354,53 +1372,78 @@ msgid "Bugzilla account password" - msgstr "Contraseña de Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Restringir acceso" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Restringir acceso al tique de bugzilla, permitiéndoselo sólo a los usuarios " -+"de los grupos especificados (vea las configuraciones avanzadas para más " -+"detalles)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Grupos" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Restringe el acceso a los grupos especificados <a href=\"https://github." -+"com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL de Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Dirección del servidor de Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Verificar SSL " - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Revisar la validez de la llave SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Producto Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" --"Especifique esto solo si necesita un producto diferente a los especificados " --"en /etc/os-release" -+"Rellénelo sólo si necesita un producto diferente al especificado en /etc/os-" -+"release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Versión de producto Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" --"Especifique esto solo si necesita una versión de producto diferente a la " -+"Rellénelo sólo si necesita una versión de producto diferente a la " - "especificada en /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1409,18 +1452,18 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "Proxy HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 - #: ../src/plugins/report_uReport.xml.in.h:12 - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:5 - msgid "Sets the proxy server to use for HTTP" --msgstr "Fija el servidor proxy para ser usado por HTTP" -+msgstr "Servidor proxy a usar para HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1429,41 +1472,15 @@ msgstr "Fija el servidor proxy para ser usado por HTTP" - msgid "HTTPS Proxy" - msgstr "Proxy HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 - #: ../src/plugins/report_uReport.xml.in.h:14 - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:7 - msgid "Sets the proxy server to use for HTTPS" --msgstr "Fija el servidor proxy para ser usado por HTTPS" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Restringir acceso" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Restringir acceso al tique de bugzilla creado permitiendo ver sólo a los " --"usuarios de los grupos especificados (vea las configuraciones avanzadas para " --"más detalles)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Grupos" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Restringe el acceso a los grupos especificados <a href=\"https://github." --"com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "Servidor proxy a usar para HTTPS" - - #: ../src/plugins/report.c:37 - msgid "" -@@ -1477,17 +1494,17 @@ msgid "" - "\n" - "Configuration (such as login data) can be supplied via files\n" - msgstr "" --"& [-v] --target TARGET --ticket ID FILE...\n" -+"& [-v] --target DESTINO --ticket ID ARCHIVO...\n" - "\n" --"Carga ARCHIVO a tíquet especificado en DESTINO.\n" -+"Envía el ARCHIVO al tique ID de DESTINO.\n" - "\n" --"Esta herramienta está provista para facilitar la transición de usuarios de " --"paquete de reportes a libreport. Los TARGET reconocidos son 'strata' y " --"'bugzilla',\n" --"Primero invoca carga a RHTSupport y luego - a Bugzilla\n" -+"Se proporciona esta herramienta para facilitar la transición de usuarios del " -+"paquete report a libreport. Los DESTINOs reconocidos son 'strata' y " -+"'bugzilla';\n" -+"el primero carga en RHTSupport y el segundo en Bugzilla.\n" - "\n" --"Los datos de configuración (tales como datos de ingreso) pueden proveerse a " --"través de archivos de configuración\n" -+"Se pueden dar los datos de configuración (tales como datos de ingreso) " -+"mediante archivos de configuración \n" - "\n" - - #: ../src/plugins/report.c:59 -@@ -1496,24 +1513,25 @@ msgstr "'strata' o 'bugzilla'" - - #: ../src/plugins/report.c:60 - msgid "Ticket/case ID" --msgstr "ID de tíquet / caso" -+msgstr "ID de tique / caso" - - #: ../src/plugins/reporter-bugzilla.c:162 - msgid "" - "Warning, private ticket groups already specified as cmdline argument, " - "ignoring the env variable and configuration" - msgstr "" --"Advertencia, los grupos de tíquet privados ya han sido especificados como " --"argumento cmdline, se ignoran la variable y configuración de env" -+"Advertencia: los grupos de tique privados ya han sido especificados como " -+"argumento en la línea de comando, se descartan la variable de entorno y la " -+"configuración" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" --msgstr "No puede continuar sin iniciar sesión" -+msgstr "No puede continuar sin usuario" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "No puede continuar sin contraseña" -@@ -1526,14 +1544,16 @@ msgstr "Ingresando a Bugzilla en '%s'" - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"Contraseña o usuario inválido. Por favor, introduce tu nombre de usuario Bugzilla:" -+"Contraseña o usuario inválido. Por favor, introduzca su nombre de usuario " -+"Bugzilla:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" --"Contraseña o usuario inválido. Por favor, introduce tu contraseña para '%s'" -+"Contraseña o usuario inválido. Por favor, introduzca su contraseña para '%s':" -+"" - - #: ../src/plugins/reporter-bugzilla.c:221 - msgid "" -@@ -1545,7 +1565,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1579,126 +1599,102 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"o:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"o:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"o:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Reporta el problema a Bugzilla.\n" --"\n" --"La herramienta lee DIR. Luego ingresa en Bugzilla y busca el error con el " --"mismo abrt_hash:HEXSTRING en 'Whiteboard'.\n" --"\n" --"Si dicho error no se encuentra, entonces se reporta un nuevo error. Los " --"elementos de DIR\n" --"se almacenan en el error como parte de su descripción o como adjuntos,\n" --"según su tipo y tamaño.\n" --"\n" --"De lo contrario, si tal error se encuentra y se marca como CLOSED DUPLICATE, " --"la herramienta sigue la cadena de duplicados hasta que encuentra un error " --"non-DUPLICATE.\n" --"La herramienta añade un nuevo comentario para el error encontrado.\n" --"\n" --"La URL al error nuevo o modificado se imprime al stdout y registra en el " --"elemento\n" --"'reported_to'.\n" --"\n" --"La opción -t carga ARCHIVOS al error creado en el sitio de Bugzilla.\n" --"El ID de error se recupera desde el directorio especificado por -d DIR.\n" --"Si los datos del problema en DIR nunca se reportaron a Bugzilla, la carga " --"fallará.\n" --"\n" --"La opción -tID carga ARCHIVOS al ID de errores especificado en el sitio de " --"Bugzilla.\n" --"-d DIR se ignora.\n" --"\n" --"La opción -w añade el usuario bugzilla a la lista de errores con CC.\n" --"\n" --"La opción -r establece la última url desde el elemento reporter_to, el cual " --"se prefija con el campo\n" --"TRACKER_NAME a URL. Esta opción se aplica únicamente al nuevo error que va a " --"ser reportado. El valor predeterminado es 'ABRT Server'\n" --"\n" --"Si no se especifica, CONFFILE se predetermina a " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Archivo de configuración (puede aparecer más de una vez)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" --msgstr "Formateando archivos para comentario inicial" -+msgstr "Archivo de formato para el comentario inicial" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" --msgstr "Formateando archivos para duplicados" -+msgstr "Archivo de formato para duplicados" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" --msgstr "Adjuntar ARCHIVOS [para error con id ID]" -+msgstr "Adjuntar ARCHIVOs [al error con id ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Al crear el informe, adjuntar también los archivos binarios " - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Reportar incluso si este problema ya ha sido reportado" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" --msgstr "Añade el usuario de Bugzilla a la lista CC [de error con este ID]" -+msgstr "" -+"Añadir el usuario de Bugzilla a la lista de notificaciones [del error con " -+"este ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" --msgstr "Imprime el BUG_ID al que se le dió el DUPHASH" -+msgstr "Mostrar el BUG_ID con el DUPHASH indicado" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" --msgstr "Un rastreador de errores para una URL adicional desde 'reported_to'" -+msgstr "Un rastreador de errores de 'reported_to' para una URL adicional" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Restringir acceso a este grupo solamente" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Depurar" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Buscando problemas similares en bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." - msgstr "" --"El usuario no ha sido proporcionado. Por favor, introduzca su usuario Bugzilla:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+"La configuración no proporciona un nombre de usuario. Por favor, ingrese su " -+"nombre de usuario Bugzilla:" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" --"La contraseña no ha sido proporcionado. Por favor, introduzca su contraseña " --"para '%s':" -+"No se ha proporcionado contraseña. Por favor, introduzca su contraseña para " -+"'%s':" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1706,7 +1702,7 @@ msgstr "" - "No se puede obtener el ID de Bugzilla porque el problema no ha sido " - "reportado todavía." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1715,78 +1711,100 @@ msgstr "" - "Este problema ha sido reportado a Bugzilla '%s', que es diferente del " - "Bugzilla '%s' especificado en la configuración." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "URL inválida para Bugzilla '%s'." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" --msgstr "Uso del ID de Bugzilla '%s'" -+msgstr "Usando el ID de Bugzilla '%s'" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" --msgstr "Salida " -+msgstr "Desconectando" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - "No se puede determinar el producto Bugzilla desde los datos del problema." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" --msgstr "Búsqueda de duplicados" -+msgstr "Buscando duplicados" -+ -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" - - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" --msgstr "Creación de un nuevo error" -+msgstr "Abriendo un nuevo error" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Fallo al crear un informe de error nuevo." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Añadiendo URL externa al error %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Añadiendo adjuntos al error %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "El error ya fue reportado: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" --msgstr "Añade %s a la lista CC" -+msgstr "Añadiendo %s a la lista CC" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Añadiendo un nuevo comentario al error %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Añadiendo un mejor trazado de pila" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Se encontró el mismo comentario en este historial de errores, no se añade " - "uno nuevo" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Estado: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1813,8 +1831,8 @@ msgstr "" - "\n" - "Reporta oops del kernel al sitio kerneloops.org (o similar).\n" - "\n" --"Archivos con nombres listados en $EXCLUDE_FROM_REPORT no se incluyen en el " --"archivo tar.\n" -+"Los archivos cuyos nombres estén en $EXCLUDE_FROM_REPORT no se incluyen\n" -+"en el archivo tar.\n" - "\n" - "Las líneas de CONFFILE deben tener el formato 'PARAM = VALOR'.\n" - "Parámetro de cadena reconocido: SubmitURL.\n" -@@ -1822,7 +1840,7 @@ msgstr "" - "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Archivo de configuración" - -@@ -1832,34 +1850,34 @@ msgid "" - "Email address of %s was not specified. Would you like to do so now? If not, " - "'%s' is to be used" - msgstr "" --"La dirección de correo-e de %s no se especificó. ¿Desea hacerlo ahora? Si " --"no, se utilizará '%s'" -+"No se especificó dirección de correo para %s. ¿Desea hacerlo ahora? Si no, " -+"se utilizará '%s'" - - #: ../src/plugins/reporter-mailx.c:66 - #, c-format - msgid "Please, type email address of %s:" --msgstr "Por favor, escriba la dirección de correo-e de %s:" -+msgstr "Por favor, escriba la dirección de correo electrónico de %s:" - - #: ../src/plugins/reporter-mailx.c:73 - #, c-format - msgid "Can't continue without email address of %s" --msgstr "No se puede continuar sin dirección de correo-e de %s" -+msgstr "No se puede continuar sin la dirección de correo de %s" - - #: ../src/plugins/reporter-mailx.c:136 - #, c-format - msgid "Sending a notification email to: %s" --msgstr "Mandando un correo-e de notificación a: %s" -+msgstr "Enviando una notificación a: %s" - - #: ../src/plugins/reporter-mailx.c:138 - msgid "Sending an email..." --msgstr "Enviando un correo..." -+msgstr "Enviando un mensaje..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" --msgstr "Se envió un correo-e a %s" -+msgstr "Se envió un mensaje a %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1869,15 +1887,16 @@ msgid "" - msgstr "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" --"Envía contenido del directorio de problemas DIR a través de correo-e\n" -+"Envía el contenido del directorio de problemas DIR mediante correo " -+"electrónico\n" - "\n" --"Si no se especifica, CONFFILE se predetermina a " -+"Si no se especifica, CONFFILE vale " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Archivo de configuración" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Sólo notificar (no marcar el informe como enviado)" - -@@ -1887,7 +1906,7 @@ msgid "" - "\n" - "Prints problem information to standard output or FILE" - msgstr "" --"& [-v] -d DIR [-o FILE] [-a yes/no] [-r]\n" -+"& [-v] -d DIR [-o ARCHIVO] [-a yes/no] [-r]\n" - "\n" - "Imprime información del problema a la salida estándar o ARCHIVO" - -@@ -1913,36 +1932,36 @@ msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - "No se puede abrir %s para escritura. Por favor, seleccione otro archivo:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Se añadió el informe a %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Se guardó el informe en %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" --msgstr "El servidor respondió con un error: ‘%s’" -+msgstr "El servidor respondió con un error: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "¿Aún desea crear un tíquet de RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - "Nombre de usuario o contraseña inválidos. Por favor, introduzca sus " - "credenciales de acceso de Red Hat:" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1950,162 +1969,161 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-v] [-c CONFFILE] -d DIR\n" --"o:\n" --"& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" --"\n" --"Reporta el problema a RHTSupport.\n" --"\n" --"Si no se especifica, CONFFILE se predetermina a" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" --msgstr "Cargar ARCHIVOS [para el caso con id ID]" -+msgstr "Cargar ARCHIVOs [para el caso con id ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "Enviar uReport antes de crear un nuevo caso" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "Fichero de configuración para uReport" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "La configuración no proporciona un nombre de usuario, ingrese su nombre de " - "usuario RHTS:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Adjuntando '%s' al caso '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "Enviando estadísticas de fallos ABRT" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "No se puede crear un directorio temporal en " -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Comprimiendo los datos" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "No se puede crear un directorio temporal en" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " --msgstr "No se puede crear un archivo temporal en" -+msgstr "No se puede crear un archivo temporal en " - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Comprobando sugerencias" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Creando un nuevo caso" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 --#, fuzzy -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - "No se puede determinar el producto de soporte técnico de RH a partir de los " - "datos del problema." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" --msgstr "Enlazando estadísticas de errores ABRT con el caso" -+msgstr "Enlazando las estadísticas de errores ABRT con el caso" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" --"Enlazando estadísticas de errores ABRT con el correo-e de contacto: '%s'" -+"Enlazando las estadísticas de errores ABRT con el correo de contacto: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" --msgstr "Añadiendo comentario al caso ‘%s’" -+msgstr "Añadiendo comentario al caso '%s'" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" --msgstr "Adjuntando datos de problema al caso ‘%s’" -+msgstr "Adjuntando datos de problema al caso '%s'" - - #: ../src/plugins/reporter-rhtsupport-parse.c:202 - msgid "Documentation which might be relevant: " --msgstr "Documentación que podría ser relevante:" -+msgstr "Documentación que podría ser relevante: " - - #: ../src/plugins/reporter-rhtsupport-parse.c:210 - msgid "Updates which possibly help: " --msgstr "Actualizaciones que podrían ser de ayuda:" -+msgstr "Actualizaciones que podrían ser de ayuda: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "No se puede continuar sin URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" --"Introduzca una URL (scp, ftp, etc...) de destino para exportar los datos del " --"problema:" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "Introduzca su contraseña para la subida:" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Se creó el archivo: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"Sube el tarball comprimido del directorio de problema DIR a URL.\n" --"Si la URL no se especifica, crea un tarball en " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" --msgstr "URL base para subir a " -+msgstr "URL base para la subida" -+ -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+"Introduzca una URL (scp, ftp, etc...) de destino para exportar los datos del " -+"problema:" - - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" --msgstr "" -+msgstr "Por favor, introduzca sus credenciales MantisBT:" - - #: ../src/plugins/reporter-mantisbt.c:86 - msgid "Please enter the password for" --msgstr "" -+msgstr "Introduzca la contraseña para" - - #: ../src/plugins/reporter-mantisbt.c:97 - msgid "Credentials are not provided by configuration." --msgstr "" -+msgstr "La configuración no proporciona las credenciales." - - #: ../src/plugins/reporter-mantisbt.c:121 - msgid "Invalid password or login." --msgstr "" -+msgstr "La contraseña o el usuario no son válidos." - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2147,104 +2165,162 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" -+"\n" -+"& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -+"o:\n" -+"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] ARCHIVO...\n" -+"o:\n" -+"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" -+"o:\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"\n" -+"Reporta el problema a MantisBT.\n" -+"\n" -+"La herramienta lee DIR. Luego busca algún problema con el mismo abrt_hash\n" -+"en el campo personalizado 'abrt_hash'.\n" -+"\n" -+"Si no se encuentra ningún problema así, se genera uno nuevo. Los elementos \n" -+"de DIR se almacenan como parte de la descripción del problema o como " -+"adjuntos,\n" -+"según su tipo y tamaño.\n" -+"\n" -+"De lo contrario, si se encuentra alguno y está marcado como CLOSED DUPLICATE " -+"\n" -+"(cerrado por duplicado), se sigue la cadena de duplicados hasta encontrar \n" -+"un problema que no esté marcado como duplicado. Finalmente se añade un nuevo " -+"\n" -+"comentario para el problema encontrado.\n" -+"\n" -+"La URL del problema nuevo o modificado se imprime en la salida y se registra " -+"en \n" -+"el elemento 'reported_to'.\n" -+"\n" -+"La opción -t envía ARCHIVOs a un problema previamente creado en MantisBT.\n" -+"El ID se recupera desde el directorio especificado por -d DIR.\n" -+"Si los datos del problema en DIR nunca se reportaron a MantisBT, la carga \n" -+"fallará.\n" -+"\n" -+"La opción -tID carga ARCHIVOs al ID especificado en MantisBT.\n" -+"-d DIR se ignora.\n" -+"\n" -+"La opción -w añade al usuario bugzilla a la lista de usuarios en copia para \n" -+"notificaciones del tique.\n" -+"\n" -+"La opción -r establece la última url del elemento reporter_to con el prefijo " -+"\n" -+"TRACKER_NAME a URL. Esta opción se aplica únicamente al nuevo problema que " -+"va a \n" -+"ser reportado. El valor predeterminado es 'ABRT Server'\n" -+"\n" -+"Si no se especifica, CONFFILE vale " - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" --msgstr "" -+msgstr "Adjuntar ARCHIVOs [al problema con id ID]" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." --msgstr "" -+msgstr "No se puede abrir el directorio de problema '%s'." - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" --msgstr "" -+msgstr "Buscando problemas parecidos en MantisBT" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" -+"No se puede obtener el ID de MantisBT porque el problema aún no se ha " -+"enviado." - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" -+"Este problema ha sido reportado a MantisBT '%s', que es diferente del " -+"MantisBT '%s' especificado en la configuración." - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." --msgstr "" -+msgstr "URL inválida para MantisBT '%s'." - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" --msgstr "" -+msgstr "Usando el ID de MantisBT '%s'" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" --msgstr "" -+msgstr "Adjuntando archivo '%s' al problema %s" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " - "to create a new issue?" - msgstr "" -+"Este problema ya se ha enviado a MantisBT (vea '%s'). ¿Aún desea crear un " -+"problema nuevo?" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" --msgstr "" -+msgstr "Creando un nuevo problema" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" --msgstr "" -+msgstr "Fichero de formato no válido: %s" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" --msgstr "" -+msgstr "Error al formatear la información del problema" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" --msgstr "" -+msgstr "Añadiendo URL externa al problema" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" --msgstr "" -+msgstr "Añadiendo adjuntos al problema %i" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" --msgstr "" -+msgstr "Fichero de formato para duplicados no válido: '%s'" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" -+"Error al formatear comentario de duplicado a partir de la información del " -+"problema" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" --msgstr "" -+msgstr "Añadiendo un comentario al problema %d" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" -+"Se encontró el mismo comentario en el histórico del problema, no se añade " -+"otro" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" --msgstr "" -+msgstr "Estado: %s%s%s %s/view.php?id=%u" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:1 - msgid "CentOS Bug Tracker" --msgstr "" -+msgstr "CentOS Bug Tracker" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:2 - #: ../src/workflows/workflow_CentOSCCpp.xml.in.h:1 -@@ -2256,55 +2332,64 @@ msgstr "" - #: ../src/workflows/workflow_CentOSVmcore.xml.in.h:1 - #: ../src/workflows/workflow_CentOSXorg.xml.in.h:1 - msgid "Report to CentOS Bug Tracker" --msgstr "" -+msgstr "Enviar informe CentOS Bug Tracker" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:4 - msgid "CentOS Bug Tracker account user name" --msgstr "" -+msgstr "Nombre de usuario de CentOS Bug Tracker" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:5 - msgid "" - "You can create bugs.centos.org account <a href=\"https://bugs.centos.org/" - "signup_page.php\">here</a>" - msgstr "" -+"Puede dar de alta una cuenta bugs.centos.org <a href=\"https://bugs." -+"centos.org/signup_page.php\">aquí</a>" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:7 - msgid "CentOS Bug Tracker account password" --msgstr "" -+msgstr "Contraseña de CentOS Bug Tracker" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 --msgid "Address of CentOS Bug Tracker server" -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "URL de CentOS Bug Tracker" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+msgid "Address of CentOS Bug Tracker server" -+msgstr "Dirección del servidor de CentOS Bug Tracker" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" --msgstr "" -+msgstr "Proyecto de CentOS Bug Tracker" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" -+"Rellénelo sólo si necesita un proyecto diferente al especificado en /etc/os-" -+"release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" --msgstr "" -+msgstr "Versión de proyecto de CentOS Bug Tracker" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" -- --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -+"Rellénelo sólo si necesita una versión de proyecto diferente a la " -+"especificada en /etc/os-release" - - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" -@@ -2352,7 +2437,7 @@ msgstr "Mailx" - - #: ../src/plugins/report_Mailx.xml.in.h:2 - msgid "Send via email" --msgstr "Enviar por correo-e" -+msgstr "Enviar por correo electrónico" - - #: ../src/plugins/report_Mailx.xml.in.h:3 - msgid "Subject" -@@ -2368,7 +2453,7 @@ msgstr "Remitente" - - #: ../src/plugins/report_Mailx.xml.in.h:6 - msgid "Sender's email" --msgstr "Correo-e del remitente" -+msgstr "Dirección del remitente" - - #: ../src/plugins/report_Mailx.xml.in.h:7 - msgid "Recipient" -@@ -2376,7 +2461,7 @@ msgstr "Destinatario" - - #: ../src/plugins/report_Mailx.xml.in.h:8 - msgid "Recipient's email" --msgstr "Correo-e del destinatario" -+msgstr "Dirección del destinatario" - - #: ../src/plugins/report_Mailx.xml.in.h:9 - msgid "Send Binary Data" -@@ -2416,7 +2501,7 @@ msgid "" - "report</a> when creating a new case." - msgstr "" - "Enviar <a href=\"https://access.redhat.com/articles/" --"642323\">uReport</a> como un nuevo caso." -+"642323\">uReport</a> al crear un nuevo caso." - - #: ../src/plugins/report_RHTSupport.xml.in.h:11 - msgid "RH Portal URL" -@@ -2432,7 +2517,7 @@ msgstr "Creador del informe" - - #: ../src/plugins/report_Uploader.xml.in.h:2 - msgid "Upload as tar.gz file (via FTP/SCP/...)" --msgstr "Subir como archivo tar.gz (vía FTP/SCP/...)" -+msgstr "Subir como archivo tar.gz (mediante FTP/SCP/...)" - - #: ../src/plugins/report_Uploader.xml.in.h:3 - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:3 -@@ -2444,7 +2529,7 @@ msgid "" - "Where do you want to upload the tarball with report in form login:" - "password@url" - msgstr "" --"¿A dónde desea subir el tarball con el informe en forma: nombredeusuario:" -+"Dónde desea subir el tarball con el informe, en forma: nombredeusuario:" - "contraseña@url" - - #: ../src/plugins/report_Uploader.xml.in.h:5 -@@ -2475,6 +2560,22 @@ msgstr "Proxy FTP" - msgid "Sets the proxy server to use for FTP" - msgstr "Especifica un servidor proxy para usar por FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2493,7 +2594,7 @@ msgstr "Dirección del servicio web uReport" - - #: ../src/plugins/report_uReport.xml.in.h:5 - msgid "Watch already reported bugs" --msgstr "Revisar los errores ya informados" -+msgstr "Suscribirse a los errores ya informados" - - #: ../src/plugins/report_uReport.xml.in.h:6 - msgid "Adds your Bugzilla login to CC List of already reported bugs." -@@ -2502,15 +2603,15 @@ msgstr "" - - #: ../src/plugins/report_uReport.xml.in.h:7 - msgid "Contact email address" --msgstr "Dirección de correo-e" -+msgstr "Dirección de correo electrónico" - - #: ../src/plugins/report_uReport.xml.in.h:8 - msgid "" - "Email address that can be used by ABRT server to inform you about news and " - "updates" - msgstr "" --"Dirección de correo-e que el servidor ABRT usará para informarle de noticias " --"y actualizaciones" -+"Dirección de correo que el servidor ABRT usará para informarle de noticias y " -+"actualizaciones" - - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:1 - msgid "Emergency analysis" -@@ -2522,11 +2623,11 @@ msgstr "Subiendo datos del problema para futuro análisis" - - #: ../src/plugins/watch_Bugzilla.xml.in.h:1 - msgid "Watch Bugzilla Bug" --msgstr "Revisar el error en Bugzilla" -+msgstr "Suscribirse al error en Bugzilla" - - #: ../src/plugins/watch_Bugzilla.xml.in.h:2 - msgid "Adds your e-mail to CC List of Bugzilla bug" --msgstr "Agregar su dirección de correo-e a la lista CC del error en Bugzilla" -+msgstr "Agrega su dirección de correo a la lista CC del error en Bugzilla" - - #: ../src/plugins/rhbz.c:382 - #, c-format -@@ -2541,9 +2642,9 @@ msgstr "El error %i está CERRADO, pero no tiene RESOLUCIÓN" - #: ../src/plugins/rhbz.c:478 - #, c-format - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" --msgstr "Error %i está CERRADO como DUPLICADO, pero no tiene DUP_ID" -+msgstr "El error %i está CERRADO como DUPLICADO, pero no tiene DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2553,163 +2654,177 @@ msgstr "" - "visite https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets para más información" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" --msgstr "Nuevo ID de error: %i" -+msgstr "ID del nuevo error: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla no pudo hallar el padre del error %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" --msgstr "Bug.search(búsqueda rápida) devolvió un valor sin el campo 'bugs'" -+msgstr "Bug.search(quicksearch) devolvió un valor sin el campo 'bugs'" - - #: ../src/plugins/mantisbt.c:123 - #, c-format - msgid "MantisBT couldn't find parent of issue %d" --msgstr "" -+msgstr "MantisBT no pudo hallar el padre del problema %d" - - #: ../src/plugins/mantisbt.c:178 - msgid "SOAP: Failed to get child element because of no parent." --msgstr "" -+msgstr "SOAP: No se pudo obtener el elemento hijo por falta del padre." - - #: ../src/plugins/mantisbt.c:187 - msgid "SOAP: Failed to get next element because of no node." --msgstr "" -+msgstr "SOAP: No se pudo obtener el elemento siguiente por falta del nodo.." - - #: ../src/plugins/mantisbt.c:196 - msgid "SOAP: Failed to get child node because of no parent." --msgstr "" -+msgstr "SOAP: No se pudo obtener el nodo hijo por falta del padre." - - #: ../src/plugins/mantisbt.c:217 - msgid "SOAP: Failed to parse xml during creating request." - msgstr "" -+"SOAP: No se pudo interpretar el xml durante la creación de la petición." - - #: ../src/plugins/mantisbt.c:225 - msgid "SOAP: Failed to get xml root element." --msgstr "" -+msgstr "SOAP: No se pudo obtener la raíz del xml." - - #: ../src/plugins/mantisbt.c:238 - msgid "" - "SOAP: Failed to add a new child node because of no node or no child name." - msgstr "" -+"SOAP: No se pudo añadir un nuevo nodo hijo por falta de nodo o de nombre del " -+"hijo." - - #: ../src/plugins/mantisbt.c:243 - msgid "SOAP: Failed to create a new xml child item." --msgstr "" -+msgstr "SOAP: No se pudo crear un nodo hijo." - - #: ../src/plugins/mantisbt.c:248 - msgid "SOAP: Failed to create a new property." --msgstr "" -+msgstr "SOAP: No se pudo crear una propiedad." - - #: ../src/plugins/mantisbt.c:258 - msgid "SOAP: Failed to add method parametr." --msgstr "" -+msgstr "SOAP: No se pudo añadir el parámetro método." - - #: ../src/plugins/mantisbt.c:287 - msgid "SOAP: Failed to add new issue parametrs." --msgstr "" -+msgstr "SOAP: No se pudieron añadir los parámetros del nuevo problema." - - #: ../src/plugins/mantisbt.c:290 - msgid "" - "SOAP: Failed to add new issue parameters because the required items are " - "missing." - msgstr "" -+"SOAP: No se pudieron añadir los parámetros del nuevo problema porque faltan " -+"los elementos obligatorios." - - #: ../src/plugins/mantisbt.c:334 - msgid "SOAP: Failed to create a new property in custom fields." - msgstr "" -+"SOAP: No se pudo crear una nueva propiedad en los campos personalizados." - - #: ../src/plugins/mantisbt.c:352 - msgid "" - "SOAP: Failed to create SOAP string because of invalid function arguments." - msgstr "" -+"SOAP: No se pudo generar el texto SOAP debido a parámetros de la función no " -+"válidos." - - #: ../src/plugins/mantisbt.c:359 - msgid "SOAP: Failed to dump xml node." --msgstr "" -+msgstr "SOAP: No se pudo volcar el nodo xml." - - #: ../src/plugins/mantisbt.c:373 - msgid "SOAP: Failed to print SOAP string." - msgstr "" -+"SOAP: No se pudo generar el texto SOAP debido a parámetros de la función no " -+"válidos." - - #: ../src/plugins/mantisbt.c:380 - msgid "Failed to dump xml node." --msgstr "" -+msgstr "No se pudo volcar el nodo xml." - - #: ../src/plugins/mantisbt.c:456 - msgid "SOAP: Failed to parse xml (searching value at depth by name)." - msgstr "" -+"SOAP: No se pudo interpretar el xml (en la búsqueda en profundidad de un " -+"valor por nombre)." - - #: ../src/plugins/mantisbt.c:460 ../src/plugins/mantisbt.c:503 - #: ../src/plugins/mantisbt.c:532 - msgid "SOAP: Failed to create xml text reader." --msgstr "" -+msgstr "SOAP: No se pudo crear el lector de xml." - - #: ../src/plugins/mantisbt.c:499 - msgid "SOAP: Failed to parse xml." --msgstr "" -+msgstr "SOAP: No se pudo interpretar el xml." - - #: ../src/plugins/mantisbt.c:528 - msgid "SOAP: Failed to parse xml (get related to issue)." - msgstr "" -+"SOAP: No se pudo interpretar el xml (al obtener el ID de problema " -+"relacionado)." - - #: ../src/plugins/mantisbt.c:645 - msgid "Url or request isn't specified." --msgstr "" -+msgstr "No se indica URL ni petición." - - #: ../src/plugins/mantisbt.c:673 - #, c-format - msgid "Error in HTTP POST, HTTP code: 404 (Not found), URL:'%s'" --msgstr "" -+msgstr "Error en HTTP POST, código HTTP: 404 (No encontrado), URL:'%s'" - - #: ../src/plugins/mantisbt.c:697 - #, c-format - msgid "Error in MantisBT request at '%s': %s" --msgstr "" -+msgstr "Error en petición a MantisBT de '%s': %s" - - #: ../src/plugins/mantisbt.c:699 - #, c-format - msgid "Error in MantisBT request at '%s'" --msgstr "" -+msgstr "Error en petición a MantisBT de '%s'" - - #: ../src/plugins/mantisbt.c:741 - #, c-format - msgid "Failed to attach file: '%s'" --msgstr "" -+msgstr "No se pudo adjuntar archivo: '%s'" - - #: ../src/plugins/mantisbt.c:760 - #, c-format - msgid "Can't lseek '%s'" --msgstr "" -+msgstr "No se pudo obtener tamaño para '%s'" - - #: ../src/plugins/mantisbt.c:766 - #, c-format - msgid "Can't upload '%s', it's too large (%llu bytes)" --msgstr "" -+msgstr "No se puede enviar '%s', es demasiado grande (%llu bytes)" - - #: ../src/plugins/mantisbt.c:776 - #, c-format - msgid "Can't read '%s'" --msgstr "" -+msgstr "No se puede leer '%s'" - - #: ../src/plugins/mantisbt.c:792 - #, c-format - msgid "Can't open '%s'" --msgstr "" -+msgstr "No se puede abrir '%s'" - - #: ../src/plugins/mantisbt.c:859 - #, c-format - msgid "Failed to search MantisBT issue by duphash: '%s'" --msgstr "" -+msgstr "Falló la búsqueda por duphash en MantisBT: '%s'" - - #: ../src/plugins/mantisbt.c:903 - #, c-format - msgid "Failed to search MantisBT duplicate issue: '%s'" --msgstr "" -+msgstr "Falló la búsqueda de duplicado en MantisBT: '%s'" - - #: ../src/plugins/mantisbt.c:930 - #, c-format -@@ -2717,110 +2832,139 @@ msgid "" - "MantisBT doesn't contain custom field '%s', which is required for full " - "functionality of the reporter. Do you still want to create a new issue?" - msgstr "" -+"MantisBT no contiene el campo personalizado '%s', que es necesario para la " -+"funcionalidad completa del informador de errores. ¿Quiere crear el problema " -+"de todas formas?" - - #: ../src/plugins/mantisbt.c:954 - #, c-format - msgid "Failed to get custom fields for '%s' project" --msgstr "" -+msgstr "No se pudieron obtener los campos personalizados del proyecto '%s'" - - #: ../src/plugins/mantisbt.c:998 - #, c-format - msgid "Failed to create a new issue: '%s'" --msgstr "" -+msgstr "No se pudo generar un nuevo problema: '%s'" - - #: ../src/plugins/mantisbt.c:1024 - #, c-format - msgid "Failed to get MantisBT issue: '%s'" --msgstr "" -+msgstr "No se pudo obtener el problema de MantisBT: '%s'" - - #: ../src/plugins/mantisbt.c:1038 - #, c-format - msgid "Issue %i is CLOSED, but it has no RESOLUTION" --msgstr "" -+msgstr "El problema %i está CERRADO, pero no tiene RESOLUCIÓN" - - #: ../src/plugins/mantisbt.c:1046 - #, c-format - msgid "Issue %i is CLOSED as DUPLICATE, but it has no DUPLICATE_ID" - msgstr "" -+"El problema %i está CERRADO como DUPLICADO, pero no tiene identificador de " -+"duplicado (DUPLICATE_ID)" - - #: ../src/plugins/mantisbt.c:1083 - #, c-format - msgid "Failed to add MantisBT issue note: '%s'" --msgstr "" -+msgstr "No se pudo añadir una nota al problema de MantisBT: '%s'" - - #: ../src/plugins/mantisbt.c:1097 - msgid "The MantisBT project has not been deretmined." --msgstr "" -+msgstr "No se especifica proyecto MantisBT." - - #: ../src/plugins/mantisbt.c:1106 - msgid "Failed to get project id from name" --msgstr "" -+msgstr "No se pudo obtener el identificador de proyecto a partir del nombre" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Especifique el URL del servidor" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Permitir conexión insegura al servidor uReport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Usar autenticación de cliente" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" --msgstr "" -+msgstr "Usar autenticación HTTP" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "Archivos adicionales incluidos en la clave 'auth'" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "bthash de uReport a adjuntar (en conflicto con -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "adjuntar a un bthash desde reported_to (en conflicto con -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - "dirección de correo-e de contacto (requiere -a|-A, en conflicto con -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - "Dirección de correo-e desde el entorno o archivo de configuración (requiere -" --"a|-A, en conflicto con -E)" -+"a|-A, en conflicto con -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "adjuntar el error RHBZ (requiere -a|-A, en conflicto con -E)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "adjuntar el último error RHBZ de reported_to (requiere -a|-A, en conflicto " - "con -b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "adjuntar texto (requiere -a|-A, en conflicto con -D)" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - "adjuntar texto a partir de comentario (requiere -a|-A, en conflicto con -d)" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2829,34 +2973,44 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Este problema no tiene un uReport asignado." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Este problema no fue reportado a Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "No se pudo encontrar el ID del error de Bugzilla en la URL '%s'" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - "No se pudo analizar el ID del error a partir de la URL de bugzilla '%s'" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "No se pudo adjuntar comentario desde el archivo 'comment'" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "el archivo 'comment' está vacío" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2864,19 +3018,19 @@ msgstr "" - "Ni la variable de entorno 'uReport_ContactEmail' ni la opción de " - "configuración 'ContactEmail' se han establecido" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "Se requiere ID del error, correo-e de contacto y/o comentario" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Necesita especificar el bthash del uReport a adjuntar." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "No se sube un uReport vacío" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Este problema ya fue reportado." - -@@ -2922,7 +3076,7 @@ msgstr "" - - #: ../src/report-newt/report-newt.c:392 - msgid "Remove DIR after reporting" --msgstr "Borrar el DIR después de reportar" -+msgstr "Borrar el DIR después de informar" - - #: ../src/workflows/workflow_AnacondaFedora.xml.in.h:1 - msgid "Report a bug to Fedora maintainers" -@@ -2955,35 +3109,37 @@ msgstr "Subir los datos vía scp o ftp a un destino remoto" - - #: ../src/workflows/workflow_CentOSCCpp.xml.in.h:2 - msgid "Process the C/C++ crash using the CentOS infrastructure" --msgstr "" -+msgstr "Procesar la caída de C/C++ mediante la infraestructura de CentOS" - - #: ../src/workflows/workflow_CentOSJava.xml.in.h:2 - msgid "Process the Java exception using the CentOS infrastructure" --msgstr "" -+msgstr "Procesar la excepción de Java mediante la infraestructura de CentOS" - - #: ../src/workflows/workflow_CentOSKerneloops.xml.in.h:2 - msgid "Process the kerneloops using the CentOS infrastructure" --msgstr "" -+msgstr "Procesar el oops del kernel la infraestructura de CentOS" - - #: ../src/workflows/workflow_CentOSLibreport.xml.in.h:2 - msgid "Process the problem using the CentOS infrastructure" --msgstr "" -+msgstr "Procesar el problema mediante la infraestructura de CentOS" - - #: ../src/workflows/workflow_CentOSPython.xml.in.h:2 - msgid "Process the python exception using the CentOS infrastructure" --msgstr "" -+msgstr "Procesar la excepción de python mediante la infraestructura de CentOS" - - #: ../src/workflows/workflow_CentOSPython3.xml.in.h:2 - msgid "Process the python 3 exception using the CentOS infrastructure" - msgstr "" -+"Procesar la excepción de python 3 mediante la infraestructura de CentOS" - - #: ../src/workflows/workflow_CentOSVmcore.xml.in.h:2 - msgid "Process the kernel crash using the CentOS infrastructure" --msgstr "" -+msgstr "Procesar el cuelgue del kernel mediante la infraestructura de CentOS" - - #: ../src/workflows/workflow_CentOSXorg.xml.in.h:2 - msgid "Process the X Server problem using the CentOS infrastructure" - msgstr "" -+"Procesar el problema del Servidor X mediante la infraestructura de CentOS" - - #: ../src/workflows/workflow_FedoraCCpp.xml.in.h:1 - #: ../src/workflows/workflow_FedoraKerneloops.xml.in.h:1 -@@ -3046,12 +3202,14 @@ msgstr "" - #: ../src/workflows/workflow_MailxCCpp.xml.in.h:1 - #: ../src/workflows/workflow_Mailx.xml.in.h:1 - msgid "Send the problem data via email" --msgstr "Enviar la información del problema por correo-e" -+msgstr "Enviar la información del problema por correo electrónico" - - #: ../src/workflows/workflow_MailxCCpp.xml.in.h:2 - #: ../src/workflows/workflow_Mailx.xml.in.h:2 - msgid "Analyze the problem locally and send information via email" --msgstr "Analizar el problema localmente y enviar la información por correo-e" -+msgstr "" -+"Analizar el problema localmente y enviar la información por correo " -+"electrónico" - - #: ../src/workflows/workflow_UploadCCpp.xml.in.h:1 - #: ../src/workflows/workflow_Upload.xml.in.h:1 -diff --git a/po/eu.po b/po/eu.po -index 264949a..ebfe0b4 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: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -170,46 +170,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -217,118 +214,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} kentzen" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Errorea yum hasieratzean (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -377,7 +381,7 @@ msgstr "Gertaerak" - msgid "C_onfigure" - msgstr "K_onfiguratu" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -403,7 +407,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -482,60 +486,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Ikusi/editatu testu-fitxategi bat" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(klikatu hemen ikusi/editatzeko)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(fitxategi bitarra, %llu byte)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(deskribapenik ez)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu byte, %u fitxategi" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -544,7 +548,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -552,7 +556,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -564,174 +568,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' ez da fitxategi arrunt bat" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Izena" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Balioa" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Arazoaren deskribapena" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Xehetasunak" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -778,109 +763,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Ez dakit arazoa zerk eragin duen" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Tamaina:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Erantsi fitxategi bat" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Izan berritsua" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -906,172 +870,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "b" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "E" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s bidaltzen %s(r)i" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "gzip killed with signal %d" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1102,21 +1132,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1197,49 +1240,69 @@ msgid "Bugzilla account password" - msgstr "Bugzilla kontuaren pasahitza" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URLa" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla zerbitzariaren helbidea" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1248,8 +1311,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1258,8 +1321,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1268,8 +1331,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1278,27 +1341,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1327,13 +1369,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1348,7 +1390,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1363,7 +1405,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1398,157 +1440,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Egoera: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1573,7 +1656,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1603,12 +1686,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1617,11 +1700,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1653,34 +1736,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Ezin da '%s' ireki idazteko. Mesedez hautatu beste fitxategi bat:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1689,77 +1772,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1772,41 +1859,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1823,7 +1918,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1866,48 +1961,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1915,47 +2010,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1991,39 +2086,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2185,6 +2283,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2250,24 +2364,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2460,65 +2574,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Zehaztu zerbitzariaren URLa" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2527,51 +2665,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/fa.po b/po/fa.po -index f0a49e2..33c76e5 100644 ---- a/po/fa.po -+++ b/po/fa.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/fa/)\n" - "Language: fa\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -174,46 +174,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -221,118 +218,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -381,7 +385,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -407,7 +411,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -486,60 +490,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "پرونده GUI جایگزین" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(برای نما/ویرایش این‌جا را کلیک کنید)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(پرونده باینری، %llu بایت)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(بدون توضیح)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu بایت، %u پرونده" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -548,7 +552,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -556,7 +560,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -568,174 +572,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "پردازشی برای رخ‌داد '%s' تعریف نشده" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "نام" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "ارزش" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "جزییات" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -784,44 +769,24 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -829,66 +794,65 @@ msgstr "" - " توضیح‌های شما خصوصی نیستند. ممکن است آن‌ها به گزارش خطاهای عمومی " - "قابل مشاهده افزوده شوند." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "اندازه:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -914,172 +878,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "ب" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "ن" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "ردگیری ناقص است، لطفا مطمئن شوید مراحل باتولید را تشریح کرده اید." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "گزارش غیرفعال شده است زیرا ردگیری غیرقابل استفاده است." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1110,21 +1140,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1205,49 +1248,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1256,8 +1319,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1266,8 +1329,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1276,8 +1339,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1286,27 +1349,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1335,13 +1377,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1356,7 +1398,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1371,7 +1413,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1406,157 +1448,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1581,7 +1664,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1611,12 +1694,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1625,11 +1708,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1661,34 +1744,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1697,77 +1780,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1780,41 +1867,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1831,7 +1926,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1874,48 +1969,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1923,47 +2018,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1999,39 +2094,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2193,6 +2291,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2258,24 +2372,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2468,65 +2582,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2535,51 +2673,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/fi.po b/po/fi.po -index eccb17e..97b159e 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: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -179,47 +179,44 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Puretaan cpio:ta paketista {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Kohteeseen ”{0}” ei voida kirjoittaa: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Ei voida purkaa pakettia ”{0}”" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - "Viedään välimuistiin tiedostoja kohteesta {0}, jotka on tehty paketista {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Kohteesta ”{0}” ei voida purkaa tiedostoja" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Hakemistoa ”{0}” ei voida poistaa: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Ladataan ({0} / {1}) {2}: {3:3} %" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -227,118 +224,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Etsitään tarvittavia paketteja pakettilähteistä" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo-tiedostolle ei löydy paketteja" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Ladattavat paketit: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Ladataan {0:.2f} Mb, asennettu koko: {1:.2f} Mb. Jatketaanko?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Käyttäjä perui latauksen" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Paketin {0} lataus epäonnitui" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Purku epäonnistui, keskeytetään lataus…" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Poistetaan {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Virhe käynnistettäessä yumia (YumBase.doConfigSetup): ”{0!s}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Pakettilähdettä {0} ei voida ottaa käyttöön: {1}, poistetaan käytöstä" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Virhe ladattaessa metatietoja: ”{0!s}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Virhe ladattaessa tiedostoluetteloita: ”{0!s}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -387,7 +391,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -413,7 +417,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -492,7 +496,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Vaihtoehtoinen GUI-tiedosto" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -501,53 +505,53 @@ msgstr "" - "Tarvitaan hakemisto johon voidaan kirjoittaa, mutta hakemistoon ”%s” ei " - "voida. Siirretäänkö se hakemistoon ”%s” ja käytetäänkö siirrettyjä tietoja?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Näytä tekstitiedosto tai muokkaa sitä" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(riippuvuus: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(ei tarvita, ”%s” on jo olemassa)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(napsauta tästä katsellaksesi tai muokataksesi)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binääritiedosto, %llu tavua)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(ei kuvausta)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu tavua, %u tiedostoa" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -556,7 +560,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -564,7 +568,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -576,75 +580,48 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Käsittely epäonnistui." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Prosessi valmis." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Käsittely valmis, siirry seuraavaan vaiheeseen." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Tapahtumalle ”%s” ei ole määritetty toimintoa" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Käsitellään..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -654,99 +631,107 @@ msgstr "" - "lähettämiseen.\n" - "Haluatko jatkaa?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "”%s” ei ole tavallinen tiedosto" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Yrität kopioida tiedostoa itseensä" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Tiedostoa ”%s” ei voi kopioida: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Kohde ”%s” on jo olemassa eikä sitä voi muokata" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Sisällytä" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nimi" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Arvo" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Ongelman kuvaus" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Anna lisätietoja" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Tarkista tiedot" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Vahvista raportoitavat tiedot" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Käsitellään" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Käsittely valmis" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Lisätietoja" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -795,26 +780,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -824,7 +789,7 @@ msgstr "" - "kuinka se pitäisi analysoida (jos tarpeen), tarkistamaan kerätyt tiedot ja " - "valitsemaan minne ongelma raportoidaan. Napsauta ”Eteenpäin” jatkaaksesi." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -834,11 +799,11 @@ msgstr "" - "sinulla muita ongelman selvittämiseksi tarvittavia tietoja? Käytä englantia, " - "jos mahdollista." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Ohjeet on täytettävä ennen kuin voit jatkaa…" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -846,31 +811,31 @@ msgstr "" - "Kommentit eivät ole yksityisiä. Ne saatetaan lisätä julkisiin " - "ongelmaraportteihin." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "En tiedä mikä aiheutti tämän ongelman" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Koko:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Liitä tiedosto" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Tarkistin tiedot ja _sallin niiden lähettämisen" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -880,19 +845,19 @@ msgstr "" - "yksityiset tiedot kuten käyttäjätunnukset ja salasanat. Tyypillisesti " - "kannattaa tarkistaa pinolistaus, komentorivi ja ympäristömuuttujat." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Näytä loki" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Raportointi on päättynyt. Tämän ikkunan voi sulkea nyt." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -902,16 +867,15 @@ msgstr "" - "antaa paremman ongelmakuvauksen ja toistaa raportointiprosessin, napsauta " - "”Eteenpäin”." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -937,89 +901,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "k" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "E" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Puuttuva tarvittu kohde: \"%s\"" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Puuttuva tarvittu kohde: \"%s\"" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Lähetetty: %llu/%llu kilotavua" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Lähetetään tiedosto %s osoitteeseen %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Tiedoston %s lähetys osoitteeseen %s onnistui" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Puuttuva pakollinen arvo" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Virheellinen utf-8-merkki ”%c”" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Virheellinen numero ”%s”" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Virheellinen totuusarvo ”%s”" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Valitsimen tyyppiä ei tueta" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Ilmoita tästä ongelmasta ABRT-projektin kehittäjille." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1027,15 +1032,15 @@ msgstr "" - "Virheenjäljitystiedot ovat epätäydelliset, varmista että olet kertonut " - "tarkat vaiheet virheen toistamiseen." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Raportointi on poistettu käytöstä, koska pinolistaus on hyödytön." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1044,69 +1049,94 @@ msgstr "" - "Yritä asentaa debuginfo manuaalisesti komennolla \"debuginfo-install %s\" ja " - "yritä uudelleen." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1137,21 +1167,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1234,49 +1277,69 @@ msgid "Bugzilla account password" - msgstr "Bugzilla-tilin salasana" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzillan URL:" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla-palvelimen osoite" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Tarkista SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Tarkista SSL-avaimen oikeellisuus" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1285,8 +1348,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1295,8 +1358,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1305,8 +1368,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1315,27 +1378,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1373,13 +1415,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1394,7 +1436,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1409,7 +1451,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1444,157 +1486,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Asetustiedosto (voidaan syöttää useita)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Liitä TIEDOSTOja [vikailmoitukseen ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Liitä virheilmoitusta luotaessa siihen myös binääritiedostoja" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Pakota raportin teko vaikka tämä ongelma on jo raportoitu" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Kirjaudutaan ulos" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Etsitään samanlaisia" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Luodaan uusi ohjelmavirheilmoitus" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Lisätään liitetiedostoja vikailmoitukseen %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Ohjelmavirheestä on jo tehty ilmoitus: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Lisää uusi kommentti vikailmoitukseen %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Liitetään parempi pinolistaus" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "Sama kommentti on jo vikailmoituksessa, ei lisätä uudelleen" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Tila: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1619,7 +1702,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Asetustiedosto" - -@@ -1649,12 +1732,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Lähetetään sähköpostia..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Lähetettiin sähköpostia osoitteeseen: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1663,11 +1746,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Asetustiedosto" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1699,34 +1782,34 @@ msgstr "Käyttäjä perui." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Tiedostoon ”%s” ei voida kirjoittaa. Valitse toinen tiedosto:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Raportti lisättiin kohteeseen %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Raportti tallennettiin kohteeseen %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Haluatko silti luoda RHTSupport-tiketin?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1735,77 +1818,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Lähetä TIEDOSTOJA [tapaukseen ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Liitetään tiedosto ”%s” tapaukseen ”%s”" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Pakataan tietoja" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1818,41 +1905,49 @@ msgstr "Mahdollisesti tärkeää dokumentaatiota:" - msgid "Updates which possibly help: " - msgstr "Pävityksiä, jotka saattavat auttaa:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Luodaan pakettia: ”%s”" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Perusosoite, johon lähetetään" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1869,7 +1964,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1912,48 +2007,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1961,47 +2056,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2037,39 +2132,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2232,6 +2330,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2298,24 +2412,24 @@ msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - "Ohjelmavirhe %i on suljettu duplikaattina, mutta sillä ei ole DUP_ID:tä" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Uuden ohjelmavirheilmoituksen tunnus: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla ei löytänyt ylemmän tason vikailmoitusta ilmoitukselle %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2508,65 +2622,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Määritä palvelimen URL" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2575,51 +2713,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Tätä ongelmaa ei ole raportoitu Bugzillaan." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Ongelma on jo raportoitu." - -diff --git a/po/fr.po b/po/fr.po -index 4a40812..fdc0bad 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -19,7 +19,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/fr/)\n" - "Language: fr\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -194,46 +194,43 @@ msgstr "Veuillez sélectionner un événement à lancer :" - msgid "Select a workflow to run: " - msgstr "Sélectionnez un workflow à exécuter :" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Extraction de cpio depuis {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Écriture sur « {0} » impossible : {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Extraction du paquetage « {0} » impossible" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Mise en cache des fichiers de {0} effectuée à partir de {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Extraction des fichiers de '{0}' impossible" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Suppression de '{0}' impossible : {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Téléchargement ({0} de {1}) {2} : {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -241,39 +238,39 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Recherche des paquetages nécessités dans les référentiels" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Les paquetages pour les fichiers debuginfo {0} sont introuvables" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Paquetages à télécharger : {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Téléchargement {0:.2f}Mo, taille installée : {1:.2f}Mo. Continuer ?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Téléchargement annulé par l'utilisateur" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -281,7 +278,7 @@ msgstr "" - "Avertissement : il n'y a pas assez d'espace libre dans le répertoire tmp " - "'{0}' ({1:.2f}Mb left). Poursuivre ?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -290,38 +287,45 @@ msgstr "" - "Avertissement : il n'y a pas assez d'espace libre dans le répertoire cache " - "'{0}' ({1:.2f}Mb left). Poursuivre ?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Échec du téléchargement du paquetage {0}" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Échec de la décompression, téléchargement annulé..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Suppression de {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -329,39 +333,39 @@ msgstr "" - "Un incident « {0!s} » est survenu pendant le téléchargement depuis le " - "mirroir : « {1!s} ». Essai du suivant" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - "Erreur lors de l'initialisation de yum (YumBase.doConfigSetup) : '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Erreur : impossible de créer le répertoire de cache, on quitte" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Impossible de désactiver le référentiel « {0!s} » : {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Impossible de désactiver le téléchargement asynchrone, le résultat pourrait " - "contenir des artefacts !" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Impossible d'installer {0} : {1}, désactivation" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Erreur lors de la récupération des métadonnées : '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Erreur lors de la récupération des listes de fichiers : '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "Impossible de copier le fichier « {0} » : {1}" -@@ -410,7 +414,7 @@ msgstr "Événements" - msgid "C_onfigure" - msgstr "C_onfigurer" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Fermer" - -@@ -438,7 +442,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Annuler" - -@@ -529,7 +533,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Fichier GUI alternatif" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -539,15 +543,15 @@ msgstr "" - "accessible en écriture. Le déplacer sur « %s » et travailler sur les données " - "déplacées ?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Voir/modifier un fichier texte" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "_Enregistrer" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -555,39 +559,39 @@ msgstr "" - "Aucune cible de rapport n'est définie pour cet incident. Vérifiez la " - "configuration dans " - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(nécessite : %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(non nécessaire, les données existent déjà : %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(cliquer ici pour voir/éditer)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(fichier binaire, %llu octets)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(sans description)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu octets, %u fichiers" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Le traitement a été annulé" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -596,7 +600,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -604,7 +608,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -616,81 +620,54 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "Le traitement a été interrompu car l'anomalir ne peut pas être l'objet d'un " - "rapport." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Échec du traitement." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Fin du traitement." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Traitement terminé. Vous pouvez procéder à l'étape suivante." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Aucune action liée à l'événement « %s » n'a été définie." - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Traitement interrompu : impossible de continuer sans répertoire inscriptible." - "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Traitement..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Impossible de vérifier la trace arrière du fait d'un nom d'événement " - "invalide" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -699,101 +676,109 @@ msgstr "" - "L'évenement « %s » demande la permission d'envoyer des données sensibles. " - "Voulez-vous continuer ?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Cet incident ne doit a priori pas être rapporté (il est probablement déjà " - "connu). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Ouvrir" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "« %s » n'est pas un fichier ordinaire" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Vous essayez de copier un fichier sur lui-même" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Copie de « %s » impossible : %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "L'élément « %s » existe déjà et n'est pas modifiable" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Inclure" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nom" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Valeur" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Description de l'incident" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Sélectionnez la manière dont vous souhaitez rapporter l'incident" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Veuillez fournir des informations supplémentaires" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Vérifier les données" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Confirmer les données à rapporter" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Traitement" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Traitement terminé" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "Arrê_ter" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Téléversement pour analyse" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Continuer" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Détails" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Restreindre l'accès au rapport" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -844,26 +829,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Restreindre l'accès au rapport" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "En savoir plus sur les rapports avec accès restreint." -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -874,7 +839,7 @@ msgstr "" - "revoir les données collectées et de choisir où l'incident devra être " - "rapporté. Veuillez cliquer sur « Suivant » pour continuer." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -885,12 +850,12 @@ msgstr "" - "utiles au diagnostic de cet incident ? Veuillez s'il-vous-plaît utiliser " - "l'anglais dans la mesure du possible." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - "La section « Comment » doit être remplie avant de pouvoir continuer..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -898,31 +863,31 @@ msgstr "" - "Vos commentaires ne sont pas privés. Ils peuvent être ajoutés dans " - "des rapports d'anomalies publiques." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Si vous ne savez pas le décrire, vous pouvez" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "ajouter une diffusion d'écran" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Je ne sais pas ce qui a causé cet incident" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Taille :" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Attacher un fichier" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "J'ai vérifié les données et donne mon _accord pour les soumettre" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -934,21 +899,21 @@ msgstr "" - "variables d'environnement sont habituellement les éléments devant être " - "examinés." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Le traitement n'a pas encore démarré" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Afficher le journal" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - "La création de rapports est terminée. Vous pouvez maintenant fermer cette " - "fenêtre." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -959,16 +924,15 @@ msgstr "" - "descriptions d'incidents et répéter le processus de rapport, appuyez sur " - "« Suivant »." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Verbeux" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Répertoire de l'incident" - -@@ -994,78 +958,119 @@ msgstr "n'est pas le répertoire de l'incident" - msgid "Can't delete '%s': %s" - msgstr "Impossible de supprimer « %s » : %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Élément requis manquant : « %s »" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "la valeur de l'uid est invalide : « %s »" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Élément requis manquant : « %s »" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Téléchargé : %llu sur %llu Ko" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Envoi de %s sur %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Envoi de %s sur %s réussi" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Une valeur nécessaire est manquante" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Caractère utf8 invalide « %c »" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Nombre invalide « %s »" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Valeur booléenne invalide : « %s »" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Option de type non supportée" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1074,11 +1079,11 @@ msgstr "" - "Le problème ne peut pas être rapporté à cause de données invalides. Le " - "fichier « %s » ne contient pas de chiffre." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Merci de rapporter cet incident aux développeurs du projet ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1086,17 +1091,17 @@ msgstr "" - "Le backtrace est incomplet, veuillez vous assurer de fournir les étapes pour " - "le reproduire." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "La trace arrière n'aidera probablement pas les développeurs à diagnostiquer " - "le défaut." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "L'envoi du rapport est désactivé car le backtrace est inutilisable." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1105,13 +1110,28 @@ msgstr "" - "Merci d'essayer d'installer les debuginfo manuellement à l'aide de la " - "commande : « debuginfo-install %s » et de réessayer." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "Des informations de débogage adéquates sont probablement manquantes, ou le " - "vidage du plantage (coredump) est corrompu." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1120,27 +1140,37 @@ msgstr "Votre incident semble être causé par %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Votre incident semble avoir l'une des causes suivantes :\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "Échec du téléversement du uReport au serveur « %s » avec curl : %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "L'URL « %s » n'existe pas (erreur 404 renvoyée par le serveur)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - "Le serveur à « %s » a rencontré une erreur interne (erreur 500 renvoyée)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" -@@ -1148,33 +1178,33 @@ msgstr "" - "(réception d'une erreur 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "Réponse HTTP inattendue de « %s » : %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "Impossible d'analyser la réponse du serveur ureport à « %s »" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "La réponse de « %s » a un format invalide" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "Une confusion de type a été détectée dans la réponse de « %s »" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Échec de la soumission du problème" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "Le serveur à « %s » a répondu par une erreur : « %s »" -@@ -1207,21 +1237,34 @@ msgstr "" - "Impossible de créer une description de la trace de la pile (ne concerne pas " - "le fil d'exécution de la panne ?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "(« %s » a été tué par le signal %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "(« %s » terminé avec succès)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "(« %s » a quitté avec code retour %u)\n" -@@ -1312,32 +1355,57 @@ msgid "Bugzilla account password" - msgstr "Mot de passe du compte Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Restreindre l'accès" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Restreindre l'accès au ticket bugzilla créé en autorisant uniquement les " -+"utilisateurs des groupes indiqués de le visualiser (voir les réglages " -+"avancés pour plus de détails)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Groupes" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"N'autoriser l'accès qu'aux groupes indiqués <a href=\"https://github.com/" -+"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL de Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Adresse du serveur Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Vérifier SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Vérifier la validité de la clé SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Produit Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1345,11 +1413,11 @@ msgstr "" - "N'indiquer ceci que si vous avez besoin de spécifier un autre produit que " - "celui indiqué dans /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Version du produit Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1357,8 +1425,8 @@ msgstr "" - "N'indiquer ceci que si vous avez besoin de spécifier une autre version de " - "produit que celle indiquée dans /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1367,8 +1435,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "Mandataire HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1377,8 +1445,8 @@ msgstr "Mandataire HTTP" - msgid "Sets the proxy server to use for HTTP" - msgstr "Configure le serveur mandataire à utiliser pour HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1387,8 +1455,8 @@ msgstr "Configure le serveur mandataire à utiliser pour HTTP" - msgid "HTTPS Proxy" - msgstr "Mandataire HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1397,32 +1465,6 @@ msgstr "Mandataire HTTPS" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Configure le serveur mandataire à utiliser pour HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Restreindre l'accès" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Restreindre l'accès au ticket bugzilla créé en autorisant uniquement les " --"utilisateurs des groupes indiqués de le visualiser (voir les réglages " --"avancés pour plus de détails)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Groupes" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"N'autoriser l'accès qu'aux groupes indiqués <a href=\"https://github.com/" --"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1466,13 +1508,13 @@ msgstr "" - "de commande, on ignore la variable d'environnement et la configuration" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Impossible de continuer sans s'identifier" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Impossible de continuer sans mot de passe" -@@ -1485,11 +1527,9 @@ msgstr "Connexion à Bugzilla sur %s" - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"Mot de passe ou identifiant invalide. Merci d'indiquer votre identifiant Bugzilla :" --"" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1506,7 +1546,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1540,124 +1580,92 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"ou :\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"ou :\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"ou :\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Rapporter un problème sur le bugzilla\n" --"\n" --"L'outil lit DIR. Il se connecte ensuite sur le bugzilla et essaye de trouver\n" --"un bogue avec le même abrt_hash:HEXSTRING dans le « tableau blanc » \n" --"\n" --"Si ce bogue n'est pas trouvé, alors un nouveau bogue est créé. Les éléments " --"du DIR\n" --"sont inscrit dans le bogue comme descriptions ou attachements,\n" --"suivant leurs types et leurs tailles.\n" --"\n" --"Si un bogue similaire est trouvé et qu'il est marqué comme CLOSED DUPLICATE,\n" --"L'outil poursuit la chaine des doublons jusqu'à trouver un bogue non " --"dupliqué.\n" --"L'outil ajoute un nouveau commentaire au bogue trouvé.\n" --"\n" --"L'URL de ce bogue, nouveau ou modifié, est inscrit dans le flux de données " --"et enregistré dans\n" --"l'élément « reported_to ».\n" --"\n" --"L'option -t télécharge les fichiers vers le bogue avec un identifiant " --"spécifique sur le site du bugzilla.\n" --"L'identifiant du bogue est récupéré depuis le répertoire spécifié par -d DIR." --"\n" --"Si les données du problème dans DIR n'ont jamais été rapportées sur le " --"bugzilla, le téléchargement échouera.\n" --"\n" --"L'option -tID télécharge les fichiers vers le bogue avec l'identifiant " --"spécifié sur le site bugzilla.\n" --"L'option -d DIR est ignorée.\n" --"\n" --"L'option -w ajoute les utilisateurs du bugzilla à la liste CC.\n" --"\n" --"L'option -r fixe la dernière url depuis l'élément reporter_to qui est " --"préfixé avec\n" --"TRACKER_NAME vers le champ d'URL. Cette option n'est appliquée que si un " --"nouveau bogue doit être\n" --"déposé. La valeur par défaut est « ABRT Server ».\n" --"\n" --"S'il n'est pas spécifié, par défaut CONFFILE" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Fichier de configuration (peut être fourni de nombreuses fois)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Mise en forme du fichier pour le commentaire initial" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Mise en forme du fichier pour les doublons" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Attacher les FICHIERS [au bogue avec cet ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Attacher les fichiers binaires aussi lors de la création d'un bogue" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Forcer le rapport même si cet incident a déjà été rapporté" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - "Ajouter votre utilisateur bugzilla à la liste CC [du défaut portant cet ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Afficher le BUG_ID possédant un DUPHASH donné" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - "Le nom d'un outil de suivi d'anomalies pour une URL supplémentaire de « " - "reported_to »" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Restreindre l'accès à ce seul groupe" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Débogage" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Recherche d'incidents similaires dans bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." - msgstr "" --"Le mot de passe n'est pas fourni dans la configuration. Merci d'indiquer " --"votre identifiant Bugzilla :" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1666,7 +1674,7 @@ msgstr "" - "Le mot de passe n'est pas fourni dans la configuration. Merci d'indiquer le " - "mot de passe pour « %s » :" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1674,7 +1682,7 @@ msgstr "" - "Impossible d'obtenir un ID Bugzilla car cet incident n'a pas été rapporté " - "sur Bugzilla." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1683,79 +1691,101 @@ msgstr "" - "Cet incident a déjà été rapporté au Bugzilla « %s » qui diffère du Bugzilla " - "« %s » configuré." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "URL malformé vers le Bugzilla « %s »." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Utilisation de l'ID Bugzilla « %s »" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Déconnexion" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - "Impossible de déterminer le produit Bugzilla à partir des données de " - "l'incident." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Vérification des doublons" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Création d'un nouveau bogue" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "La création d'un nouveau bogue a échoué." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Ajouter un URL externe au bogue %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Ajouter des pièces jointes au bogue %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Le bogue a déjà été rapporté : %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "Ajout de %s à la liste en copie" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Ajout d'un nouveau commentaire au bogue %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Un meilleur backtrace est joint" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Le même commentaire a été trouvé dans l'historique du bogue, ajout d'un " - "nouveau commentaire annulé" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Statut : %s%s%s %s/show_bug.cgi?id=%u" -@@ -1792,7 +1822,7 @@ msgstr "" - "Le paramètre peut être remplacé via $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Fichier de configuration" - -@@ -1824,12 +1854,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Envoyer un courriel..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Courriel envoyé à : %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1843,11 +1873,11 @@ msgstr "" - "\n" - "Si non-spécifié CONFFILE est ajusté par défaut sur " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Fichier de configuration" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Notification uniquement (ne pas marquer le rapport comme envoyé)" - -@@ -1885,34 +1915,34 @@ msgstr "" - "Ouverture de « %s » en écriture impossible. Veuillez sélectionner un autre " - "fichier :" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Le rapport a été ajouté à %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Le rapport a été stocké sur %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "Le serveur a répondu par une erreur : « %s »" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Voulez-vous toujours créer un ticket RHTSupport ?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1921,81 +1951,85 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Télécharger les FICHIERs (FILEs) [sur le dossier avec cet ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "L'identifiant de connexion n'est pas fourni dans la configuration. Merci " - "d'indiquer votre identifiant RHTS :" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "« %s » joint au dossier « %s »" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Impossible de créer un répertoire temporaire dans" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Compression des données" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Impossible de créer un répertoire temporaire dans" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Impossible de créer un fichier temporaire dans" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Recherche d'indices" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Création d'un nouveau dossier" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - "Impossible de déterminer le produit Red Hat pris en assistance à partir des " - "données du problème." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Ajout d'un commentaire au dossier « %s »" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Ajout des données de l'incident au dossier « %s »" -@@ -2008,47 +2042,49 @@ msgstr "Documents pouvant être pertinents :" - msgid "Updates which possibly help: " - msgstr "Mises à jour pouvant être utiles :" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Impossible de continuer sans URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Archive créée : %s" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"Téléverse une archive tar compressée d'un répertoire d'incidents DIR à l'URL." --"\n" --"\n" --"Si l'URL n'est pas indiquée, crée l'archive tar dans" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "URL de base où effectuer l'envoi" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -2065,7 +2101,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2108,48 +2144,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2157,47 +2193,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2233,39 +2269,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2431,6 +2470,22 @@ msgstr "Mandataire FTP" - msgid "Sets the proxy server to use for FTP" - msgstr "Configure le serveur mandataire à utiliser pour FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2498,7 +2553,7 @@ msgstr "" - "Le bogue %i est FERMÉ (CLOSED) en tant que DUPLIQUÉ (DUPLICATE), mais il ne " - "possède pas de DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2508,17 +2563,17 @@ msgstr "" - "précisé ; veuillez-vous reporter à la page https://github.com/abrt/abrt/wiki/" - "FAQ#creating-private-bugzilla-tickets pour plus d'informations." - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Nouvel ID de bogue : %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla n'a pas trouvé le parent du bogue %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Bug.search(quicksearch) renvoie une valeur ne contenant pas de défaut membre." -@@ -2713,39 +2768,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Spécifier l'URL du serveur" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Permettre les connexions non-sécurisées au serveur ureport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Utilisez l'authentification client" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "bthash du uReport à attacher (en conflit avec -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "attacher à un bthash à partir de reported_to (en conflit avec -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "adresse électronique (requiert -a|-A, en conflit avec -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2753,29 +2808,53 @@ msgstr "" - "adresse électronique de l'environnement ou du fichier de configuration " - "(requiert -a|-A, en conflit avec -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "attacher le bogue RHBZ (requiert -a|-A, en conflit avec -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "attacher le dernier bogue RHBZ à partir de reported_to (requiert -a|-A, en " - "conflit avec -b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2784,33 +2863,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Cet incident n'a pas de uReport attribué." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Cet incident n'a pas été rapporté sur Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Impossible de trouver l'ID de défaut dans l'URL bugzilla « %s »" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Impossible d'analyser l'ID de défaut de l'URL bugzilla « %s »" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2818,19 +2907,19 @@ msgstr "" - "Ni la variable d'environnement « uReport_ContactEmail », ni l'option de " - "configuration « ContactEmail » ne sont définis" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Vous devez spécifier le bthash du uReport auquel se rattacher." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Pas de téléversement d'un uReport vide" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Cet incident a déjà été rapporté." - -diff --git a/po/gl.po b/po/gl.po -index 9188f7d..23d86c6 100644 ---- a/po/gl.po -+++ b/po/gl.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/gl/)\n" - "Language: gl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -184,46 +184,43 @@ msgstr "Escolla un acontecemento para executar: " - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "A extraer cpio de {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Non é posíbel escribir en «{0}»: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Non é posíbel extraer o paquete «{0}»" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "A enviar á caché os ficheiros de {0} feitos de {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Non é posíbel extraer os ficheiros de «{0}»" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Non é posíbel retirar «{0}»: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "A descargar ({0} de {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -231,85 +228,92 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "A buscar os paquetes necesarios nos repositorios" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - "Non é posíbel obter os paquetes de {0} ficheiros de información de " - "depuración" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Paquetes para descargar: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "A descargar {0:.2f}Mb; tamaño do instalado: {1:.2f}Mb. Continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "O usuario cancelou a descarga" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Fallou a descarga do paquete {0}" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Fallou o desempacado; cancélase a descarga..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "A retirar {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -317,39 +321,39 @@ msgstr "" - "Produciuse o problema «{0!s}» ao descargar desde a réplica: «{1!s}». Vaise " - "tentar coa seguinte" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - "Produciuse un erro ao inicializar o yum (YumBase.doConfigSetup): «{0!s}»" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Erro: non é posíbel crear cachedir; sáese" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Non é posíbel desactivar o repositorio «{0!s}»: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Non é posíbel desactivar a descarga asíncrona; a saída podería conter " - "artefactos!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Non é posíbel configurar {0}: {1}; desactívase" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Produciuse un erro ao obter os metadatos: «{0!s}»" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Produciuse un erro ao obter as listas de ficheiros: «{0!s}»" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -398,7 +402,7 @@ msgstr "Acontecementos" - msgid "C_onfigure" - msgstr "C_onfigurar" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -425,7 +429,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -515,7 +519,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Ficheiro alternativo da interface gráfica" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -524,15 +528,15 @@ msgstr "" - "Fai falta un directorio no que se poida escribir, mais non é posíbel " - "escribir en «%s». Móvese a «%s» e trabállase sobre os datos trasladados?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Ver/editar un ficheiro de texto" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -540,39 +544,39 @@ msgstr "" - "Non se definiu ningún destino de información para este problema. Comprobe a " - "configuración de /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(sen descrición)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -581,7 +585,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -589,7 +593,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -601,174 +605,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Non se puido realizar o procesamento." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "A procesar..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Incluir" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nome" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Valor" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "A procesar" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detalles" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -815,109 +800,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Tamaño:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Anexar unha imaxe" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Mostrar o rexistro" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Directorio de problemas" - -@@ -943,89 +907,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Falta un elemento necesario: «%s»" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "O identificador de usuario non é correcto: «%s»" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Falta un elemento necesario: «%s»" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Enviado: %llu de %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "A enviar «%s» a %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Enviouse correctamente %s a %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Falta un valor obrigatorio" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "O carácter de utf8 «%c» non é válido" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "O número «%s» non é válido" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "O valor lóxico «%s» non é válido" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Non se admite este tipo de opción" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Informe deste erro aos desenvolvedores do proxecto ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1033,17 +1038,17 @@ msgstr "" - "O trazado inverso está incompleto; asegúrese de incluír os pasos para " - "reproducilo." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "O trazado inverso probabelmente non poida axudar os desenvolvedores a " - "diagnosticar o fallo." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Desactivouse o informe porque o trazado inverso non se pode usar." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1052,13 +1057,28 @@ msgstr "" - "Tente instalando debuginfo manualmente coa orde «debuginfo-install %s» e " - "ténteo de novo." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "Probabelmente falte un debuginfo adecuado ou o envorcado do core estea " - "estragado." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1067,58 +1087,68 @@ msgstr "Parece que este problema está causado por %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Parece que este problema pode estar causado por algo do seguinte:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "Fallou o envío de uReport ao servidor «%s» co curl: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "O URL «%s» non existe (obtívose o erro 404 por parte do servidor)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "O servidor de «%s» atopou un erro interno (recibiuse un erro 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "A reposta de «%s» ten un formato incorrecto" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Produciuse un fallo ao remitir o problema" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "O servidor de «%s» respondeu cun erro: «%s»" -@@ -1149,21 +1179,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "(«%s» foi matado co sinal %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "(«%s» foi completado satisfactoriamente)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "(«%s» saíu con %u)\n" -@@ -1254,32 +1297,52 @@ msgid "Bugzilla account password" - msgstr "Contrasinal da conta do Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL de Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Enderezo do servidor de Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Comprobar o SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Comprobar a validez da chave de SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Produto de Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1287,11 +1350,11 @@ msgstr "" - "Indique isto só se precisase dun produto diferente do que se indica en /etc/" - "os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Versión do produto de Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1299,8 +1362,8 @@ msgstr "" - "Indique isto só se precisase dunha versión do produto diferente da que se " - "indica en /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1309,8 +1372,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "Proxy de HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1319,8 +1382,8 @@ msgstr "Proxy de HTTP" - msgid "Sets the proxy server to use for HTTP" - msgstr "Indica o servidor de proxy que se desexa empregar para o HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1329,8 +1392,8 @@ msgstr "Indica o servidor de proxy que se desexa empregar para o HTTP" - msgid "HTTPS Proxy" - msgstr "Proxy de HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1339,27 +1402,6 @@ msgstr "Proxy de HTTPS" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Indica o servidor de proxy que se desexa empregar para o HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1399,13 +1441,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Non é posíbel continuar sen acceder" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Non é posíbel continuar sen contrasinal" -@@ -1418,11 +1460,9 @@ msgstr "A acceder ao Bugzilla en %s" - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"O contrasinal ou o nome de usuario son incorrectos. Introduza as súas " --"credenciais de Bugzilla:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1439,7 +1479,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1474,158 +1514,199 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Ficheiro de configuración (pódese dar moitas veces)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "A formatar o ficheiro para o comentario inicial" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "A formatar o ficheiro para duplicados" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Obrigar a informar mesmo se xa se informou deste problema" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Restrinxir o acceso unicamente a este grupo" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Depurar" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "A buscar problemas semellantes en bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "A saír" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "A comprobar se hai duplicados" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "A crear un fallo novo" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "A engadir anexos ao fallo %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Xa se informou deste fallo: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "A engadir o novo comentario ao fallo %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "A anexar un trazado inverso mellor" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Atopouse o mesmo comentario no histórico do fallo; non se engade un novo" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Estado: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1650,7 +1731,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Ficheiro de configuración" - -@@ -1680,12 +1761,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "A enviar correo..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "A mensaxe de correo foi enviada a: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1699,11 +1780,11 @@ msgstr "" - "\n" - "Por omisión, FICHEIRO_CONF é " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Ficheiro de configuración" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Só notificar (Non marcar o informe como enviado)" - -@@ -1738,34 +1819,34 @@ msgstr "Cancelado polo usuario." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Non é posíbel abrir «%s» para escribir nel. Escolla outro ficheiro:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Anexouse o informe a %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Almacenouse o informe en %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "O servidor respondeu cun erro: «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1774,77 +1855,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "A anexar «%s» ao caso «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "A comprimir os datos" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "A comprobar se hai suxestións" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "A crear un caso novo" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "A engadir un comentario ao caso «%s»" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "A anexar os datos do problema ao caso «%s»" -@@ -1857,41 +1942,49 @@ msgstr "Documentación que podería ser relevante: " - msgid "Updates which possibly help: " - msgstr "Actualizacións que posibelmente axuden: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Creouse un arquivo: «%s»" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "URL base ao que enviar" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1908,7 +2001,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1951,48 +2044,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2000,47 +2093,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2076,39 +2169,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2275,6 +2371,22 @@ msgstr "Proxy de FTP" - msgid "Sets the proxy server to use for FTP" - msgstr "Indica o servidor de proxy que se desexa empregar para o FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2342,24 +2454,24 @@ msgstr "" - "O fallo %i está FECHADO como DUPLICADO, mais non ten DUP_ID (identificador " - "de duplicado)" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Novo identificador do fallo: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla non puido atopar o pai do fallo %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2552,65 +2664,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Indicar o URL do servidor" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Permitir a conexión insegura co servidor de ureport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2619,53 +2755,63 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Este problema non ten un uReport asignado." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Non se informou deste problema a Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - "Non foi posíbel atopar o identificador do fallo no URL de bugzilla «%s»" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - "Non foi posíbel analizar o identificador do fallo do URL de bugzilla «%s»" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Non se envía un uReport baleiro" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Xa se ten informado sobre este problema." - -diff --git a/po/gu.po b/po/gu.po -index 5fbc1c7..c6f45c8 100644 ---- a/po/gu.po -+++ b/po/gu.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/gu/)\n" - "Language: gu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -183,46 +183,43 @@ msgstr "ચલાવવા માટે ઘટના પસંદ કરો: " - msgid "Select a workflow to run: " - msgstr "ચલાવવા માટે કામગીરી પસંદ કરો: " - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0} માંથી cpio ને બહાર કાઢી રહ્યા છે" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}' માં લખી શકાતુ નથી: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "પેકેજ '{0}' ને કાઢી શકાતુ નથી" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{1} માંથી બનાવેલ {0} માંથી ફાઇલોનું કેશ કરી રહ્યા છે" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' માંથી ફાઇલોને કાઢી શકાતુ નથી" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' ને દૂર કરી શકાતુ નથી: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "({1}) {2} નું {0}) ડાઉનલોડ કરી રહ્યા છે: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -230,40 +227,40 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "રિપોઝીટરીઓમાં જરૂરી પેકેજો માટે જોઇ રહ્યા છે" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo ફાઇલો માટે પેકેજોને શોધી શકાતા નથી" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "ડાઉનલોડ કરવા માટે પેકેજો: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "{0:.2f}Mb ડાઉનલોડ કરી રહ્યા છે, સ્થાપિત થયેલ માપ: {1:.2f}Mb. ચાલુ રાખો?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "વપરાશકર્તા દ્દારા રદ થયેલ ડાઉનલોડ" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -271,7 +268,7 @@ msgstr "" - "ચેતવણી: tmp ડિરેક્ટરી '{0}' માં પૂરતી ખાલી જગ્યા નથી ({1:.2f}Mb બાકી). ચાલુ " - "રાખવું છે?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -280,38 +277,45 @@ msgstr "" - "ચેતવણી: કેશ ડિરેક્ટરી '{0}' માં પૂરતી ખાલી જગ્યા નથી ({1:.2f}Mb બાકી). ચાલુ " - "રાખવું છે?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "પેકેજ {0} ડાઉનલોડ કરતી વખતે નિષ્ફળતા" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "નિકાળતી વખતે નિષ્ફળતા, ડાઉનલોડને કાઢી રહ્યા છે..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} દૂર કરી રહ્યા છે" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -319,37 +323,37 @@ msgstr "" - "સમસ્યા '{0!s}' ઉદ્ભવી જ્યારે મીરર: '{1!s}' માંથી ડાઉનલોડ કરી રહ્યા હતા. " - "આગળની એકનો પ્રયાસ કરી રહ્યા છીએ" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum (YumBase.doConfigSetup) શરૂ કરતી વખતે ભૂલ: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "ક્ષતિ: cachedir બનાવી શકતા નથી, બહાર નીકળી રહ્યા છીએ" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr " '{0!s}' રિપોઝીટરીને નિષ્ક્રિય કરી શકાતુ નથી: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "async ડાઉનલોડ નિષ્ક્રિય કરી શકતા નથી, આઉટપુટ માનવીય વસ્તુઓ સમાવી શકે છે!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0} ને સુયોજિત કરી શકતા નથી: {1}, નિષ્ક્રિય કરી રહ્યા છે" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "મેટાડેટાને પ્રાપ્ત કરતી વખતે ભૂલ: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "ફાઇલયાદીને પ્રાપ્ત કરતી વખતે ભૂલ: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "ફાઇલ '{0}' ની નકલ કરી શકતા નથી: {1}" -@@ -398,7 +402,7 @@ msgstr "ઘટનાઓ" - msgid "C_onfigure" - msgstr "રૂપરેખાંકન કરો " - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "બંધ કરો" - -@@ -424,7 +428,7 @@ msgstr "ગુપ્ત સેવા ઉપલબ્ધ નથી, તમાર - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "રદ કરો " - -@@ -510,7 +514,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "વારાફરતી GUI ફાઇલ" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -519,15 +523,15 @@ msgstr "" - "લખી શકાય તેવી ડિરેક્ટરીની જરૂર છે, પરંતુ '%s' ને લખી શકાય તેમ નથી. '%s' માં " - "તેને ખસેડો અને ખસેડેલ માહિતી પર ચલાવો?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "લખાણ ફાઇલને દર્શાવો/ફેરફાર કરો" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "સંગ્રહો" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -535,39 +539,39 @@ msgstr "" - "આ સમસ્યા માટે અહેવાલ લક્ષ્યો વ્યાખ્યાયિત થયેલ નથી. /etc/libreport/* માં " - "રૂપરેખાંકન તપાસો" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(જરૂરી: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(જરૂરી નથી,'%s' માં ડેટા પહેલેથી જ અસ્તિત્વ ધરાવે છે )" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(જોવા/ફેરફાર કરવા માટે અહિંયા ક્લિક કરો)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(બાઇનરી ફાઇલ, %llu બાઇટ્સ)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(વર્ણન નથી)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu બાઇટ્સ, %u ફાઇલો" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "પ્રક્રિયા રદ થઇ ગઇ" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -576,7 +580,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -584,7 +588,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -596,75 +600,48 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "પ્રક્રિયા વિક્ષેપિત હતી કારણ કે સમસ્યા અહેવાલ આપી શકતી નથી" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "પ્રક્રિયા નિષ્ફળ." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "પ્રક્રિયા સમાપ્ત." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "પ્રક્રિયા સમાપ્ત, મહેરબાની કરી આગળનાં તબક્કામાં આગળ વધો." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "ઘટના '%s' માટે પ્રક્રિયા વ્યાખ્યાયિત થયેલ નથી" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "પ્રક્રિયા વિક્ષેપિત: લેખિત યાદી વગર ચાલુ રાખશો નહી." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "પ્રક્રિયામાં..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "અમાન્ય ઘટના નામના કારણે બેકટ્રેસ રેટિંગ ચકાસણી કરી શકતા નથી" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -673,99 +650,107 @@ msgstr "" - "ઘટના '%s' ને સંભવિત સંવેદનશીલ માહિતી મોકલવા માટે પરવાનગીની જરૂર છે.\n" - "શું તમે ચાલુ રાખવા માંગો છો?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "આ સમસ્યાનો અહેવાલ જોઇએ નહીં(તે સંભવિત જાણીતી સમસ્યા છે).%s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "ખોલો" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' એ સામાન્ય ફાઇલ નથી" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "તમે પોતાનાં પર ફાઇલની નકલ કરવાનો પ્રયત્ન કરી રહ્યા છે" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' ની નકલ કરી શકાતી નથી: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "વસ્તુ '%s' પહેલેથી જ અસ્તિત્વ ધરાવે છે અને બદલી શકાય તેમ નથી" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "સમાવો" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "નામ" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "કિંમત" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "સમસ્યા વર્ણન" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "આ સમસ્યાનો અહેવાલ કેવી રીતે આપવો તે પસંદ કરો" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "વધારાની જાણકારીને પૂરી પાડો" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "માહિતીનું રિવ્યૂ કરો" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "અહેવાલ કરવા માટે માહિતીની ખાતરી કરો" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "પ્રક્રિયામાં" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "પ્રક્રિયા પૂર્ણ" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "થોભો" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "વિશ્લેષણ માટે અપલોડ કરો" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "આગળ ધપાવો" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "વિગતો" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "અહેવાલ પૂરતી જ પરવાનગી મર્યાદિત રાખો" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -816,28 +801,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "અહેવાલ પૂરતી જ પરવાનગી મર્યાદિત રાખો" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Fedora કર્મચારીઓ સિવાય કોઈ એક મર્યાદિત પ્રવેશ સાથે (તમે પણ નહી) અહેવાલ જોવા " --"પરવાનગી આપવામાં આવશે " -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "મર્યાદિત પરવાનગી સાથે અહેવાલો વિશે વધુ વાંચો" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -848,7 +811,7 @@ msgstr "" - "થયેલ માહિતીનું રિવ્યૂ કરવા માટે, અને સમસ્યાને ક્યાં અહેવાલ કરવી જોઇએ તે પસંદ " - "કરવા માટે. આગળ ધપાવા માટે 'આગળ ધપાવો' પર ક્લિક કરો." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -858,11 +821,11 @@ msgstr "" - "કોઇપણ વધારાની ટિપ્પણીઓ સમસ્યાનું નિદાન કરવા માટે ઉપયોગી છે? મહેરબાની કરીને " - "અંગ્રેજી વાપરો જો શક્ય હોય તો." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "તમે પ્રક્રિયા કરી શકો છો તે પહેલાં તમે કેવી રીતે ભરો તે જરૂરી છે..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -870,31 +833,31 @@ msgstr "" - "તમારી ટિપ્પણીઓ ખાનગી નથી. તેઓ સાર્વજનિક રીતે દૃશ્યમાન સમસ્યા " - "અહેવાલોમાં સમાવેલ હોઇ શકે છે." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "જો તમે તેને કેવી રીતે વર્ણવવુ તે જાણતા નથી, તમે કરી શકો." - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "સ્ક્રીનકાસ્ટ ઉમેરો" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "હું જાણતો નથી કે કોનાં કારણે આ સમસ્યા ઉદ્ભવી" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "માપ:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ફાઇલને જોડો" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "મેં માહિતીનું રિવ્યૂ કર્યુ અને તેને સમાવવા સંમત છુ (_a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -904,19 +867,19 @@ msgstr "" - "માહિતીને દૂર કરેલ છે (જેવી કે વપરાશકર્તાનામ અને પાસવર્ડ). બેકટ્રેસ, આદેશ " - "વાકય, પર્યાવરણ ચલો એ નિરીક્ષણ કરવા માટે લાક્ષણિક વસ્તુઓ છે." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "પ્રક્રિયા હજુ સુધી ચાલુ થઇ નથી" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "લૉગ બતાવો" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "અહેવાલીકરણ સમાપ્ત થયેલ છે. તમે હવે આ વિન્ડોને બંધ કરી શકો છો." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -926,16 +889,15 @@ msgstr "" - "કરો, અથવા સારામાં સારી સમસ્યા વર્ણનને પૂરી પાડો અને અહેવાલીકરણ પ્રક્રિયા " - "વારંવાર કરો, 'આગળ ધપાવો' દબાવો." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "વર્બોઝ રહો" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "સમસ્યા ડિરેક્ટરી" - -@@ -961,78 +923,119 @@ msgstr "સમસ્યા નથી એવી ડિરેક્ટરી" - msgid "Can't delete '%s': %s" - msgstr "'%s' કાઢી શકાતુ નથી: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "જરૂરી વસ્તુની ગેરહાજરી:'%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid મુલ્ય કાયદેસર નથી:'%s' " - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "જરૂરી વસ્તુની ગેરહાજરી:'%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "અપલોડેડ: %llu kbytes નું %llu" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s માં %s ને મોકલી રહ્યા છે" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s માં %s ને સફળતાપૂર્વક મોકલ્યું" -+msgid "gzip exited with %d" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "ફરજિયાત કિંમત ખૂટે છે" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "અયોગ્ય utf8 અક્ષર '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "અયોગ્ય સંખ્યા '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "અયોગ્ય બુલિયન કિંમત '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "બિનઆધારભૂત વિકલ્પ પ્રકાર" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1041,12 +1044,12 @@ msgstr "" - "સમસ્યા અયોગ્ય માહિતીને કારણે અહેવાલ કરી શકાતી નથી, '%s' ફાઇલ નંબરને સમાવી " - "શકતુ નથી." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - "મહેરબાની કરીને ABRT પ્રોજેક્ટ વિકાસકર્તાને આ સમસ્યાના અહેવાલની જાણ કરો" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1054,16 +1057,16 @@ msgstr "" - "બેકટ્રેસ એ અપૂરતુ છે, મહેરબાની કરીને ખાતરી કરો કે પુન:ઉત્પન્ન કરવા માટે " - "સારાં પગલાઓ પૂરા પાડો છો." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "બેકટ્રેસ કદાચ ભૂલ નિદાન માટે વપરાશકર્તાને મદદ કરી શકે નહી." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - "અહેવાલ કરવાનું નિષ્ક્રિય થયેલ છે કારણ કે બેકટ્રેસ ઉપયોગ કરી શકાય તેવુ નથી." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1072,11 +1075,26 @@ msgstr "" - "મહેરબાની કરીને આદેશની મદદથી જાતેજ ડિબગ જાણકારીને સ્થાપિત કરવાનો પ્રયત્ન કરો: " - "\"debuginfo-install %s\" અને ફરીથી પ્રયત્ન કરો " - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "યોગ્ય ડિબગ માહિતી કદાચ ગુમ થયેલ છે અથવા કોરદમ્પ બગડેલ હોય છે." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1085,58 +1103,68 @@ msgstr "તમારી સમસ્યા %s ના કારણે હોય - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "તમારી સમસ્યા નીચેનામાંથી એક ને કારણે હોય તેવુ જણાય છે\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr " કર્લ સાથે '%s' સર્વર uReport અપલોડ કરવામાં નિષ્ફળ:%s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' અસ્તિત્વમાં નથી(સર્વરમાંથી 404 ભૂલ મળી)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr " સર્વર %s' પર અચાનક આંતરિક ભૂલ આવી (500 ભૂલ મળી)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "'%s' પર હાલમાં સર્વર વિનંતીને ઉકેલ કરી શકતા નથી (503 ભૂલ મળી)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s' માંથી અનિચ્છનીય HTTP પ્રતિસાદ:%d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "'%s' પર ureport સર્વરમાંથી જવાબ વિશ્લેશિત કરવામાં અસમર્થ છે" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' માંથી અમાન્ય ફોર્મેટ પાસે જવાબ" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "'%s' દ્વારા ખોટી જોડણી ના પ્રકાર જવાબમાં શોધી કાઢે છે" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "સમસ્યાને રજુ કરવામાં નીષ્ફળતા" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "સર્વર '%s' માં ક્ષતિવાળો પ્રત્યુત્તર આપ્યો:'%s'" -@@ -1167,21 +1195,34 @@ msgstr "બેકટ્રેસનું પદચ્છેદન કરી શ - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "સ્ટેકટ્રેસ વર્ણન ઉત્પન કરી શકાતુ નથી(વિચાર તોડાતો નથી?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "(%u આદેશ દ્વારા '%s' નો નાશ થયો હતો)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' સફતાથી પૂર્ણ)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "(%u સાથે '%s' બહાર જાય)\n" -@@ -1264,32 +1305,56 @@ msgid "Bugzilla account password" - msgstr "બગઝીલા ખાતા પાસવર્ડ" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "મર્યાદિત પરવાનગી" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"ચોક્કસ જૂથોમાંથી વપરાશકર્તાઓ માત્ર તેને જોવા માટે પરવાનગી આપે છે Bugzilla " -+"ટિકિટ બનાવી વપરાશ પ્રતિબંધિત છે (વધુ વિગતો માટે એડ્વાન્સ સુયોજનો જુઓ)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "જૂથો" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"સ્પષ્ટ કરેલ જૂથોમાં પરવાનગી નિયંત્રિત કરો અને તે;a href=\"https://github.com/" -+"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "બગઝીલા URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "બગઝીલા સર્વરનું સરનામું" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL ને ચકાસો" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL કી યોગ્યતાને ચકાસો" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "બગઝીલા પ્રૉડક્ટ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1297,11 +1362,11 @@ msgstr "" - "આ સ્પષ્ટ કરો જો તમે / etc / OS-પ્રકાશનમાં સ્પષ્ટ કરતાં અલગ ઉત્પાદન જરૂરી હોય " - "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "બગઝીલા પ્રૉડક્ટ આવૃત્તી" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1309,8 +1374,8 @@ msgstr "" - "આ સ્પષ્ટ કરો જો તમે / etc / OS-પ્રકાશનમાં સ્પષ્ટ કરતાં અલગ ઉત્પાદન આવૃત્તિ " - "જરૂરી હોય " - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1319,8 +1384,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP પ્રોક્સી" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1329,8 +1394,8 @@ msgstr "HTTP પ્રોક્સી" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTPS માટે વાપરવાનું પ્રોક્સી સર્વર સુયોજીત કરે છે" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1339,8 +1404,8 @@ msgstr "HTTPS માટે વાપરવાનું પ્રોક્સી - msgid "HTTPS Proxy" - msgstr "HTTPS પ્રોક્સી" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1349,31 +1414,6 @@ msgstr "HTTPS પ્રોક્સી" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS માટે વાપરવાનું પ્રોક્સી સર્વર સુયોજીત કરે છે" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "મર્યાદિત પરવાનગી" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"ચોક્કસ જૂથોમાંથી વપરાશકર્તાઓ માત્ર તેને જોવા માટે પરવાનગી આપે છે Bugzilla " --"ટિકિટ બનાવી વપરાશ પ્રતિબંધિત છે (વધુ વિગતો માટે એડ્વાન્સ સુયોજનો જુઓ)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "જૂથો" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"સ્પષ્ટ કરેલ જૂથોમાં પરવાનગી નિયંત્રિત કરો અને તે;a href=\"https://github.com/" --"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1413,13 +1453,13 @@ msgstr "" - "જેમ દલીલ સ્પષ્ટ કરો, " - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "લોગઇન વગર ચાલુ રાખી શકશો નહી" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "પાસવર્ડ વગર ચાલુ રાખી શકશો નહી" -@@ -1431,10 +1471,10 @@ msgstr "%s પર બગઝીલામાં પ્રવેશ કરી ર - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "પાસવર્ડ અથવા પ્રવેશ અમાન્ય. મહેરબાની કરીને તમારો Bugzilla પ્રવેશ દાખલ કરો:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "પાસવર્ડ અથવા પ્રવેશ અમાન્ય. મહેરબાની કરીને '%s' માટે પાસવર્ડ દાખલ કરો" -@@ -1449,7 +1489,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1483,114 +1523,89 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Bugzilla માં સમસ્યાનો અહેવાલ કરે છે.\n" --"\n" --" સાધન DIR ને વાંચે છે. પછી તે Bugzilla માં પ્રવેશે છે અને\n" --"'Whiteboard' માં સરખા abrt_hash:HEXSTRING સાથે ભૂલ શોધવાનો પ્રયત્ન કરે છે.\n" --"\n" --" જો આવી ભૂલ મળી ન હોય તો, પછી નવી ભૂલ બનાવેલ છે. DIR નાં ઘટકો ભૂલ વર્ણનનાં " --"ભાગ તરીકે અથવા જોડાણો તરીકે ભૂલમાં સંગ્રહેલ છે, તેનાં પ્રકાર અને માપ પર આધાર " --"રાખી રહ્યુ છે.\n" --"\n" --" નહિં તો, જો આવી ભૂલ મળી હોય તો અને તે CLOSED DUPLICATE તરીકે ચિહ્નિત થયેલ " --"છે, સાધન નકલોની કતારને અનૂસરે છે જ્યાંસુધી તે non-DUPLICATE ભૂલને શોધે. સાધન " --"મળેલ ભૂલમાં નવી ટિપ્પણીને ઉમેરે છે.\n" --"\n" --" નવી અથવા ફેરફાર થયેલ ભૂલમાં URL stdout માટે છાપેલ છે અને 'reported_to' " --"element માં અહેવાલ થયેલ છે.\n" --"\n" --"બગઝીલા સાઇટ પર પહેલેથી જ બનાવવામાં ભૂલ માટે વિકલ્પ-T અપલોડ ફાઇલો કરો.\n" --"ભૂલ ID દ્વારા-D DIR સ્પષ્ટ ડિરેક્ટરી મેળવાય છે.\n" --"જો DIR માં સમસ્યા માહિતીને બગઝીલાના અહેવાલની જાણ ન હતી, તો અપલોડ નિષ્ફળ " --"જશે.\n" --"\n" --"બગઝીલા સાઇટ પર સ્પષ્ટ ID સાથે ભૂલ કરવા માટે વિકલ્પ-tid ફાઇલો અપલોડ કરો.\n" --"-D DIR અવગણવામાં આવે છે.\n" --"\n" --"વિકલ્પ-W ની ભૂલ CC યાદીમાં Bugzilla વપરાશકર્તા ઉમેરે છે.\n" --"\n" --"વિકલ્પ-r ની URL ક્ષેત્ર માટે TRACKER_NAME સાથે ઉપસર્ગ થયેલ છે, જે " --"reporter_to તત્વ ના છેલ્લા URL સુયોજિત કરે છે.\n" --"આ વિકલ્પ નવી ભૂલ નોંધાઇ હોય છે ત્યારે જ લાગુ પડે છે\n" --"મૂળભૂત કિંમત 'ABRT સર્વર' છે\n" --"\n" --"જો સ્પષ્ટ થયેલ નહિં હોય, તો CONFFILE મૂળભૂત છે" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "રૂપરેખાંકન ફાઇલ (ઘણી વખત આપી શકાય છે)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "પ્રારંભિક ટિપ્પણી માટે ફાઇલની ગોઠવણી કરી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "નકલો માટે ચકાસી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "ફાઇલો જોડો [આ ID સાથે ભૂલમાં]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "જ્યારે ભૂલનો અહેવાલ કરી રહ્યા હોય ત્યારે, બાઇનરી ફાઇલોને પણ જોડો" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "અહેવાલ કરવાનું દબાણ કરો જો આ સમસ્યા પેહલેથી જ અહેવાલ થયેલ છે" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "CC યાદીમાં બગઝીલા વપરાશકર્તા ઉમેરો [આ ID સાથે ભૂલ]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "DUPHASH આપવામાં આવ્યુ છે BUG_ID છાપો" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "'reported_to' માંથી વધારાના URL માટે ભૂલ ટ્રેકરનું નામ" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "માત્ર આ જૂથ પૂરતી જ પરવાનગી મર્યાદિત રાખો" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "ડિબગ" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "બગઝીલામાં સરખી સમસ્યાઓ માટે જોવાય છે" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." - msgstr "" --"પ્રવેશ રૂપરેખા દ્વારા પૂરો પાડવામાં આવેલ નથી. મહેરબાની કરીને તમારાે Bugzilla " --"પ્રવેશ દાખલ કરો:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1599,7 +1614,7 @@ msgstr "" - "પાસવર્ડ રૂપરેખાંકન દ્વારા પૂરો પાડવામાં આવેલ નથી. મહેરબાની કરીને '%s' માટે " - "પાસવર્ડ દાખલ કરો" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1607,7 +1622,7 @@ msgstr "" - "બગઝીલા ID મળી શકે નહી કારણકે આ સમસ્યાની હજુ સુધી બગઝીલામાં જાણ કરવામાં આવી " - "નથી." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1616,75 +1631,97 @@ msgstr "" - "આ સમસ્યા બગઝીલા '%s' માટે જણાવવામાં આવે છે જે રૂપરેખાંકિત બગઝીલા '%s' માંથી " - "અલગ પડે છે." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "બગઝીલા '%s' માટે દૂષિત URL." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "'%s' બગઝીલા ID નો ઉપયોગ કરી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "બહાર નીકળી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "સમસ્યા માહિતીમાંથી બગઝીલા ઉત્પાદન નક્કી કરી શકાતું નથી." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "નકલો માટે ચકાસી રહ્યા છે" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "નવી ભૂલને બનાવી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "નવી ભૂલને બનાવવામાં નિષ્ફળ રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "ભૂલ %i માં બહારનું URL ઉમેરી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "ભૂલ %i માં જોડાણોને ઉમેરી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "ભૂલ પહેલેથી જ અહેવાલ થયેલ છે: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "CC યાદીમાં %s ને ઉમેરો" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "ભૂલ %d માં નવી ટિપ્પણીને ઉમેરી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "સારામાં સારા બેકટ્રેસને જોડી રહ્યા છે" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "ભૂલ ઇતિહાસમાં એજ ટિપ્પણી મળી, નવાં એકને ઉમેરતા નથી" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "પરિસ્થિતિ: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1718,7 +1755,7 @@ msgstr "" - "પરિમાણ $KerneloopsReporter_SubmitURL મારફતે ઉપર લખી શકાય છે." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "રૂપરેખાંકન ફાઇલ" - -@@ -1750,12 +1787,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ઇમેલ મોકલી રહ્યા છે..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "ઇમેઇલ તેમાં મોકલેલ હતુ: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1769,11 +1806,11 @@ msgstr "" - "\n" - "જો સ્પષ્ટ થયેલ ન હોય તો, CONFFILE એ તેમાં મૂળભૂત છે" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "રૂપરેખાંકન ફાઇલ" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "ફક્ત સૂચિત કરો (મોકલ્યા પ્રમાણે અહેવાલને ચિહ્નત ન કરો)" - -@@ -1809,34 +1846,34 @@ msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - "લખવા માટે '%s' ને ખોલી શકાતુ નથી. મહેરબાની કરીને બીજી ફાઇલને પસંદ કરો:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "અહેવાલ %s માં જોડાયેલ હતો" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "અહેવાલ %s માં સંગ્રહ થયેલ હતો" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "સર્વરે ક્ષતિવાળો પ્રત્યુત્તર આપ્યો: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "શું તમને હજુ RHTSupport ટિકીટ બનાવવાની ઇચ્છા છે?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1845,79 +1882,83 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "અપલોડ FILEs [આ ID સાથેની સ્થિતિમાં]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "પ્રવેશ રૂપરેખાંકન દ્વારા પૂરી પાડવામાં આવેલ નથી. મહેરબાની કરીને તમારો RHTS " - "પ્રવેશ દાખલ કરો:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "સ્થિતિ '%s' માં '%s' ને જોડી રહ્યા છે" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "માં કામચલાઉ ડિરેક્ટરીને બનાવી શકતા નથી" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "માહિતીને સંકોચી રહ્યા છે" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "માં કામચલાઉ ડિરેક્ટરીને બનાવી શકતા નથી" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "માં કામચલાઉ ફાઇલ બનાવી શકતા નથી" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "સંકેતો માટે ચકાસી રહ્યા છે" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "નવી સ્થિતિને બનાવી રહ્યા છે" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "સમસ્યા માહિતીમાંથી RH આધાર ઉત્પાદન નક્કી કરી શકાતું નથી." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "સ્થિતિ '%s' માં ટિપ્પણીને ઉમેરી રહ્યા છે" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "સ્થિતિ '%s' માં સમસ્યા સ્થિતિને જોડાઇ રહ્યા છે" -@@ -1930,45 +1971,49 @@ msgstr "દસ્તાવેજીકરણ કે જે તેને લગ - msgid "Updates which possibly help: " - msgstr "સુધારાં કે જેનાથી મદદ થઇ શકે છે:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "URL વગર ચાલુ રાખી શકશો નહી" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "પેટી બનાવેલ છે: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"અપલોડ URL માટે સમસ્યા યાદી DIR માં દબાવેલુ ટારબોલ.\n" --"જો URL સ્પષ્ટ થયેલ નહિં હોય, તો ટારબોલમાં બનાવે" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "તેમાં અપલોડ કરવા માટે આધાર URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1985,7 +2030,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2028,48 +2073,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2077,47 +2122,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2153,39 +2198,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2351,6 +2399,22 @@ msgstr "FTP પ્રોક્સી" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP માટે વાપરવાનું પ્રોક્સી સર્વર સુયોજીત કરે છે" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2417,7 +2481,7 @@ msgstr "Bug %i એ CLOSED છે, પરંતુ તેની પાસે RESO - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Bug %i એ DUPLICATE તરીકે CLOSED છે, પરંતુ તેની પાસે DUP_ID નથી" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2427,17 +2491,17 @@ msgstr "" - "આવ્યા નથી, મહેરબાની કરીને વધારે માહિતી માટે https://github.com/abrt/abrt/" - "wiki/FAQ#creating-private-bugzilla-tickets જુઓ" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "નવી ભૂલ id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "બગઝીલા ભૂલ %d નાં મુખ્યને શોધી શક્યુ નહિં" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "ભૂલ. 'ભૂલો' સભ્યમાં પરત કિંમત શોધવું (ઝડપથી શોધવું) ન હતુ" - -@@ -2630,39 +2694,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "સર્વર URL સ્પષ્ટ કરો" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "ureport સર્વરમાં અસુરક્ષિત જોડાણને પરવાનગી આપો" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "ક્લાયન્ટ સત્તાધિકરણ વાપરો" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "જોડે uReport ના bthash (-A સાથે તકરાર)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "Reported_to માંથી bthash સાથે જોડે છે (-a સાથે વિરોધ)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "ઈ મેલ સરનામું સંપર્ક (a|A ની જરૂરીયાત, E સાથે વિરોધ)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2670,28 +2734,52 @@ msgstr "" - "વાતાવરણ અથવા રૂપરેખાંકન ફાઈલમાંથી ઈ મેલ સરનામુંનો સંપર્ક (-a|-A ની " - "જરૂરીયાત, -e સાથે વિરોધ)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ ભૂલ જોડો (a|A ની જરૂરીયાત, B સાથે વિરોધ)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "reported_to માંથી છેલ્લી RHBZ ભૂલ જોડો (-a|-A ની જરૂરીયાત, -b સાથે વિરોધ)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2700,33 +2788,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "આ સમસ્યા uReport ને સોંપાયેલ નથી. " - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "આ સમસ્યાનો બગઝીલામાં અહેવાલ થયેલ નથી." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr " Bugzilla URL '%s' માં ભૂલ ID ને શોધવામાં અસમર્થ" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Bugzilla URL '%s' માંથી ભૂલ ID ને વિશ્લેશિત કરવામાં અસમર્થ" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2734,19 +2832,19 @@ msgstr "" - " બેમાંથી પર્યાવરણ ચલ 'uReport_ContactEmail' અથવા રૂપરેખાંકન વિકલ્પ " - "'ContactEmail' સુયોજિત છે" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "તમે uReport જોડી ને bthash સ્પષ્ટ કરવાની જરૂર છે." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "ખાલી uરિપોર્ટ અપલોડ થતો નથી" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr " આ સમસ્યા માટે પેહલેથી જ અહેવાલ થયેલ છે" - -diff --git a/po/he.po b/po/he.po -index e7bc32c..590ddd5 100644 ---- a/po/he.po -+++ b/po/he.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/he/)\n" - "Language: he\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -173,46 +173,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -220,118 +217,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -380,7 +384,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -406,7 +410,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -485,60 +489,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(לחץ כאן לצפיה/עריכה)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(קובץ בינארי, %llu בתים)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(אין תיאור)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu בתים, %u קבצים" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -547,7 +551,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -555,7 +559,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -567,174 +571,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "שם" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "ערך" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "פרטים" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -783,110 +768,89 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - "ההערות שלך אינן פרטיות. הן עלולות להיכלל בדיווחי בעיה הנראים לציבור. " - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "גודל:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -912,173 +876,239 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "חסר ערך חובה" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - "מידע הקריסה לא שלם. אנא וודא שסיפקת הסבר טוב על איך לגרום לקריסה להתרחש שוב." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "הדיווח מנוטרל, מכיוון שמידע הקריסה אינו שמיש." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1109,21 +1139,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1204,49 +1247,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1255,8 +1318,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1265,8 +1328,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1275,8 +1338,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1285,27 +1348,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1334,13 +1376,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1355,7 +1397,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1370,7 +1412,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1405,157 +1447,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1580,7 +1663,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1610,12 +1693,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1624,11 +1707,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1660,34 +1743,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1696,77 +1779,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1779,41 +1866,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1830,7 +1925,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1873,48 +1968,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1922,47 +2017,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1998,39 +2093,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2192,6 +2290,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2257,24 +2371,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2467,65 +2581,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2534,51 +2672,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/hi.po b/po/hi.po -index 809312b..bcfafc0 100644 ---- a/po/hi.po -+++ b/po/hi.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -23,7 +23,7 @@ msgstr "" - "hi/)\n" - "Language: hi\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -185,46 +185,43 @@ msgstr "सेलेक्ट एन इवेंट तो रन: " - msgid "Select a workflow to run: " - msgstr "चलाने के लिए कोई वर्कफ्लो चुनें: " - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "cpio को {0} से निष्कर्षित कर रहा है" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}' में नहीं लिख सकता है: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "संकुल '{0}' निकाल नहीं सकता है" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{0} मेड से {1} फ़ाइल कैशिंग " - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' से फ़ाइल नहीं निकाल सकता है" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' को नहीं हटा सकता है: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "({0} {1} का) डाउनलोड कर रहा है {2} : {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -232,39 +229,39 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "जरूरी संकुल के लिए रिपोजिटरी को देख रहा है" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo फ़ाइल के लिए संकुल नहीं ढूँढ़ सका" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "डाउनलोड के लिए संकुल: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "{0:.2f}Mb डाउनलोड कर रहा है, संस्थापन आकार: {1:.2f}Mb. जारी?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "उपयोक्ता के द्वारा डाउनलोड रद्द किया गया " - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -272,7 +269,7 @@ msgstr "" - "चेतावनी: टेंप डाइरेक्टरी '{0}' ({1:.2f}Mb left) में पर्याप्त खाली स्थान नहीं." - " जारी रखें?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -281,38 +278,45 @@ msgstr "" - "चेतावनी: कैश डाइरेक्टरी '{0}' ({1:.2f}Mb left) में पर्याप्त खाली स्थान नहीं. " - "जारी रखें?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "संकुल डाउनलोडिंग {0} विफल " - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "पैक करना विफल, डाउनलोड छोड़ रहा है..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} हटा रहा है" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -320,38 +324,38 @@ msgstr "" - "मिरर से डाउनलोड करते वक़्त यह समस्या '{0!s}' हुई : '{1!s}'.दूसरे मिरर से " - "प्रयत्न किया जा रहा है" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum (YumBase.doConfigSetup) के प्रारंभिकीकरण में त्रुटि: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "एरर: can't make cachedir, बाहर निकल रहा है" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "रिपोजिटरी '{0!s}' निष्क्रिय नहीं कर सकता है: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Async डाउनलोड को डिसेबल नही किया जा सकता, हो सकता है इस के आउटपुट में आर्टी-" - "फॅक्ट्स हो!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0}: {1} सेटअप नहीं कर सकता, निष्क्रिय कर रहा है" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "metadata प्राप्त करने में त्रुटि: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "फ़ाइललिस्ट प्राप्त करने में त्रुटि: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "'{0}' फ़ाइल नक़ल नहीं कर सकता है: {1}" -@@ -400,7 +404,7 @@ msgstr "घटनाए" - msgid "C_onfigure" - msgstr "विन्यास" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "बंद करें (_C)" - -@@ -426,7 +430,7 @@ msgstr "सीक्रेट सर्विस उपलब्ध नहीं - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "रद्द करें (_C)" - -@@ -515,7 +519,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "वैकल्पिक जीयूआई फ़ाइल" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -524,15 +528,15 @@ msgstr "" - "लेखन योग्य निर्देशिका चाहिए, लेकिन '%s' लेखन योग्य नहीं है. '%s' में खिसकाएँ " - "और खिसकाए गए आँकड़ा पर संचालित करें?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "पाठ फ़ाइल देखें/संपादित करें" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "सहेजें (_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -540,39 +544,39 @@ msgstr "" - "कोई रिपोर्टिंग टारगेट इस समस्या के लिए सुझाया नही गया है. कॉनफिगरेशन /etc/" - "libreport/* यहाँ चेक करे" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(इसकी ज़रूरत है: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(जरूरी नहीं, डेटा पहले से मौजूद: '%s' )" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "देखें/संपादन में यहाँ क्लिक करें)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(द्विपदीय फ़ाइल, %llu बाइट्स)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(कोई विवरण नहीं)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu बाइट्स, %u फ़ाइल" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "प्रोसेसिंग रद्द किया गया" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -581,7 +585,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -589,7 +593,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -601,76 +605,49 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "प्रोसेसिंग में बाधा डाली गई थी क्योंकि समस्या रिपोर्ट करने योग्य नहीं है." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "प्रोसेसिंग विफल हो गया." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "प्रोसेसिंग ख़त्म हो गया." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "प्रोसेसिंग ख़त्म हो गया, कृपया अगले कदम पर बढ़िए." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "घटना '%s' के लिए कोई प्रक्रिया परिभाषित नहीं है" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "प्रोसेसिंग में रुकावट: राइटबल डाइरेक्टरी के बगैर नही लिख सकते " - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "प्रोसेसिंग..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "बेक-ट्रेस रेटिंग चेक नही किया जा सकता क्योंकि इवेंट का नाम ग़लत है" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -679,99 +656,107 @@ msgstr "" - "'%s' इवेंट को अनुमति दें की वो संभावित संवदेनशील डेटा भेज सके! \n" - "क्या आप को यह कार्य जारी रखना है!" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "यह समस्या रिपोर्ट ना करे (यह जानीमानी समस्या है). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "खोलें (_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' एक सामान्य फ़ाइल नहीं है" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "आप इस पर एक फ़ाइल कॉपी करने की कोशिश कर रहे हैं" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' को कॉपी नहीं कर सकता है: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "मद '%s' पहले से मौजूद है और रुपांतरण योग्य नहीं है" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "शामिल करें" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "नाम" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "मान" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "समस्या विवरण" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "चुनें कि कैसे इस समस्या को रिपोर्ट करना चाहेंगे" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "अतिरिक्त सूचना दें" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "आँकड़ा समीक्षा करें" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "रिपोर्ट में आँकड़ा संपुष्ट करें" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "प्रोसेसिंग" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "प्रोसेसिंग संपन्न" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "रोकें(_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "विश्लेषण के लिए अपलोड करे" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "अग्रेषित करें (_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "विवरण" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "रिपोर्ट में पहुँच सीमित करें" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -822,26 +807,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "रिपोर्ट में पहुँच सीमित करें" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "प्रतिबंधित पहुँच के साथ रिपोर्ट के बारे में अधिक जानने के लिए पढ़ें" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -852,7 +817,7 @@ msgstr "" - "यह चुनने के लिए कहाँ समस्या रिपोर्ट की जाएगी. 'अग्रेषित करें' को आगे बढ़ने " - "के लिए क्लिक करें." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -861,11 +826,11 @@ msgstr "" - "कैसे यह समस्या (चरण बद्ध) आयी? कैसे इसे फिर उत्पन्न किया जा सकता है? समस्या " - "के निदान के लिए कोई अतिरिक्त टिप्पणी? यदि संभव हो तो अंग्रेजी का उपयोग करें." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "आगे बढ़ने से पहले आपको कैसे करें को भरना होगा..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -873,31 +838,31 @@ msgstr "" - "आपकी टिप्पणियाँ निजी नहीं हैं. उन्हें सार्वजनिक रूप से दृश्य समस्या " - "रिपोर्ट में शामिल किया जा सकता है." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "अगर आप इस का वर्णन नही कर सकते तो आप" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "screencast डाले" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "मैं नहीं जानता कि इस समस्या का जन्म कैसे हुआ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "आकार:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "एक फ़ाइल संलग्न करें" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "मैं इस आँकड़ा की समीक्षा की और इसे सौंपते हुए सहमत हूँ (_a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -907,19 +872,19 @@ msgstr "" - "निजी आँकड़े (जैसे कि उपयोक्तानाम और कूटशब्द). हटा दिए हैं. जाँच करने की " - "जरूरत के लिए बैकट्रेस, कमांड लाइन और वातावरण चर है." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "प्रोसेसिंग अभी तक शुरू नही हुआ है" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "लॉग दिखाएँ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "रिपोर्टिंग संपन्न. आप अब इस विंडो को बंद कर सकते हैं." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -928,16 +893,15 @@ msgstr "" - "यदि आप भिन्न गंतव्य में समस्या को रिपोर्ट करना चाहते हैं, अतिरिक्त सूचना जमा " - "करें या बेहतर समस्या विवरण दें या रिपोर्टिंग प्रक्रिया दुहराएँ, 'आगे' दबाएँ." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "बी वरबोस" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "समस्या डाइरेक्टरी" - -@@ -963,89 +927,130 @@ msgstr "समस्या निर्देशिका नहीं है" - msgid "Can't delete '%s': %s" - msgstr "'%s' मिटा नहीं सकता है: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "यह ज़रूरी आइटम गायब है: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid की वॅल्यू अमान्य है: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "यह ज़रूरी आइटम गायब है: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "अपलोड किया गया: %llu of %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s को %s में भेज रहा है" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s को %s में सफलतापूर्वक भेजा" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "गुम अनिवार्य मान" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "अवैध utf8 वर्ण '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "अवैध संख्या '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "अवैध बुलियन मान '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "असमर्थित विकल्प प्रकार" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "कृपया करके यह समस्या ABRT के प्रॉजेक्ट डेवेलपर्स को रिपोर्ट करें." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1053,15 +1058,15 @@ msgstr "" - "बैकट्रेस अपूर्ण है, कृपया सुनिश्चित करें कि आप फिर बनाने के लिए बेहतर चरण " - "देते हैं." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "बग के निदान में बेक-ट्रेस डेवेलपर की शायद कोई मदद नही कर सकती." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "रिपोर्टिंग निष्क्रिय क्योंकि बैकट्रेस अप्रयोज्य है." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1070,11 +1075,26 @@ msgstr "" - "कृपया करके debuginfo को इस कमांड का इस्तेमाल करके मॅन्यूयेली इनस्टॉल करे : " - "\"debuginfo-install %s\" और पुनः प्रयास करे." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "संभावित सही debuginfo लापता है या coredump करप्टेड है." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1083,58 +1103,68 @@ msgstr "आपकी समस्याएँ %s इसी कारण की - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "आपकी समस्याएँ इन्ही कारण ओ की वजह से हुई है:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "यू-रिपोर्ट कर्ल के साथ सर्वर '%s' पर अपलोड नही की जा सकी: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' मौजूद नही है (सर्वर से एरर 404 मिला)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "सर्वर इधर '%s' पर इंटर्नल एरर का सामना कर रहा है ( एरर 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "अप्रत्याशित HTTP अनुक्रिया '%s' से: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' से आया हुआ रेस्पॉन्स ग़लत फॉर्मॅट में है" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "टाइप मिसमॅच पाया गया है इस रेस्पॉन्स में '%s'" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "समस्या भेजने में असफल हो गया" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "'%s' सर्वर ने इस एरर का संकेत दिया है: '%s'" -@@ -1165,21 +1195,34 @@ msgstr "बैकट्रेस विश्लेषित नहीं कर - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "स्टैकट्रेस विवरण बना नहीं सकता है (कोई क्रैश लड़ी नहीं?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' इस %u सिग्नल द्वारा मारा गया)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' की सफलतापूर्व समाप्ति)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' इनके साथ निकास %u हुआ)\n" -@@ -1266,32 +1309,57 @@ msgid "Bugzilla account password" - msgstr "बगजिला खाता कूटशब्द" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "पहुँच सीमित करें" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"निर्मित बगज़िला टिकट में पहुँच प्रतिबंधित करें ताकि उपयोग को निर्दिष्ट समूह " -+"में उपयोक्ता को अनुमति देते हुए ताकि इसे देख सकें (अधिक विवरण के लिए उन्नत " -+"सेटिंग देखें)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "समूह" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"निर्दिष्ट समूह में पहुँच सीमित करें <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "बगजिला URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "बगजिला सर्वर का पता" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL जाँचें" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL कुंजी वैधता जाँचें" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "बगज़ीला प्रॉडक्ट" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1299,11 +1367,11 @@ msgstr "" - "अगर आपको /etc/os-release में दिए हुए प्रॉडक्ट के अलावा दूसरा प्रॉडक्ट चाहिए " - "तो ही यहाँ बतलाए" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "बगज़ीला प्रॉडक्ट वर्षन" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1311,8 +1379,8 @@ msgstr "" - "अगर आपको /etc/os-release में दिए हुए प्रॉडक्ट वर्षन के अलावा दूसरा वर्षन " - "चाहिए तो ही यहाँ बतलाए" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1321,8 +1389,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP प्रॉक्सी" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1331,8 +1399,8 @@ msgstr "HTTP प्रॉक्सी" - msgid "Sets the proxy server to use for HTTP" - msgstr "प्रॉक्सी सर्वर को सेट किया गया है HTTP के इस्तेमाल के लिए" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1341,8 +1409,8 @@ msgstr "प्रॉक्सी सर्वर को सेट किया - msgid "HTTPS Proxy" - msgstr "HTTPS प्रॉक्सी" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1351,32 +1419,6 @@ msgstr "HTTPS प्रॉक्सी" - msgid "Sets the proxy server to use for HTTPS" - msgstr "प्रॉक्सी सर्वर को सेट किया गया है HTTPS के इस्तेमाल के लिए" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "पहुँच सीमित करें" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"निर्मित बगज़िला टिकट में पहुँच प्रतिबंधित करें ताकि उपयोग को निर्दिष्ट समूह " --"में उपयोक्ता को अनुमति देते हुए ताकि इसे देख सकें (अधिक विवरण के लिए उन्नत " --"सेटिंग देखें)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "समूह" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"निर्दिष्ट समूह में पहुँच सीमित करें <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1417,13 +1459,13 @@ msgstr "" - "चर और विन्यास को अनदेखा करते हुए" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "बिना लॉगिन के आगे नही बढ़ सकते" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "बिना पासवर्ड के आगे नही बढ़ सकते" -@@ -1435,10 +1477,10 @@ msgstr "बगजिला में %s पर लागिंग" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "ग़लत पासवर्ड या लॉगिन. कृपया करके अपना Bugzilla लॉगिन डाले:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "ग़लत पासवर्ड या लॉगिन. कृपया करके इसका '%s' पासवर्ड डाले:" -@@ -1453,7 +1495,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1487,116 +1529,90 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"बगज़िला में समस्या रिपोर्ट करें.\n" --"\n" --"यह औज़ार DIR को पढ़ती है. तब यह इसे बगज़िला में लॉगिन करती है और\n" --"उसी abrt_hash:HEXSTRING से 'Whiteboard' में बग पता करने की कोशिश करती है.\n" --"\n" --"यदि ऐसा बग नहीं मिलता है, तब एक नया बग बनता है. DIR के तत्व\n" --"बग में जमा होते हैं बग विवरण के हिस्से के रूप में या बतौर संलग्नक,\n" --"उनके प्रकार और आकार पर निर्भर करते हुए.\n" --"\n" --"अन्यथा, यदि ऐसे बग नहीं मिलते हैं और यह बंद और डुप्लीकेट के रूप में चिह्नित " --"किए जाते हैं,\n" --"तो औज़ार डुप्लीकेट की शृंखला का अनुसरण करता है जबतक यह गैर डुप्लीकेट बग नहीं " --"पता कर लेता है.\n" --"यह औज़ार मिले बग में नयी टिप्पणी जोड़ देता है.\n" --"\n" --"नए या बदले बग में URL को stdout में छापा जाता है और \n" --"'reported_to' तत्व में रिकार्ड किया जाता है.\n" --"\n" --"विकल्प -t फ़ाइलों को पहले से बने बग को बगज़िला साइट पर अपलोड करता है.\n" --"बग ID को -d DIR से निर्दिष्ट निर्देशिका से हासिल किया जाता है.\n" --"यदि समस्या है तो आँकड़ा DIR को कभी बगज़िला में रिपोर्ट नहीं किया जाता है, " --"अपलोड विफल रहेगा.\n" --"\n" --"विकल्प -tID फ़ाइल को बग में निर्दिष्ट ID के साथ बगज़िला साइट पर अपलोड करता " --"है.\n" --"-d DIR अनदेखा किया जाता है.\n" --"\n" --"विकल्प -w बगज़िला उपयोक्ता को बग की सीसी सूची में जोड़ता है.\n" --"\n" --"विक्लप -r अंतिम यूआरएल को reporter_to element से सेट करता है जो \n" --"TRACKER_NAME के साथ URL क्षेत्र में प्रीफिक्स है. यह विकल्प केवल तभी लागू " --"होता है जब नया बग\n" --"फ़ाइल किया जाना हो. तयशुदा मान 'ABRT सर्वर' है\n" --"\n" --"यदि निर्दिष्ट नहीं है, तो CONFFILE को इसमें तयशुदा करें" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "विन्यास फ़ाइल (कई बार दिया हो सकता है)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "पहली टिप्पणी के लिए फाइल फॉर्मॅट कि जा रही है" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "नकली के लिए फॉर्मॅट किया जा रहा है" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILE संलग्न करें [इस ID के साथ बग फाइल करने के लिए]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "जब बग निर्मित किया जाता है, द्विपदीय फ़ाइलें भी संलग्न करें" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - "बाध्यकारी रिपोर्टिंग इसके बावजूद कि यह समस्या पहले ही रिपोर्ट की जा चुकी है" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "बगज़ीला यूज़र को CC लिस्ट मे डाले [ यह बग ID के साथ]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "प्रिंट BUG_ID जिसने यह DUPHASH दिया है" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "'reported_to' से अतिरिक्त यूआरएल के लिए बग ट्रैकर का नाम" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "केवल इसी ग्रूप को आक्सेस दे" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "डिबग" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "एक जैसी समस्याओ के लिए बगजिला में देखे" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" --msgstr "कॉनफिगरेशन द्वारा लोगिन नही दिया गया है. कृपया अपना Bugzilla लोगिन डाले:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1605,14 +1621,14 @@ msgstr "" - "पासवर्ड कॉनफिगरेशन द्वारा नही दिया गया है ! कृपया करके इसका '%s' पासवर्ड " - "डाले:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - "यह समस्या अब तक बगज़ीला मे रिपोर्ट नही की गयी है, इसलिए बॅगज़ीला ID नही है" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1621,75 +1637,97 @@ msgstr "" - "यह समस्या बगज़ीला '%s' मे रिपोर्ट हो चुकी है जोकि इस '%s' बगज़ीला से अलग " - "कन्फिगर्ड है" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "मॅलफॉर्म्ड URL टू बगज़ीला '%s'." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "बगजिला ID '%s' इस्तेमाल में" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "लॉगिंग आउट" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "प्रोब्लेम डेटा से पता नही कर सकते Bugzilla Product का" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "नकली के लिए जाँचा जा रहा है" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "नया बग बना रहा हूँ" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "नया बग बनाने में विफल." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "अतिरिक्त बाहरी यूआरएल %i बग में" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "बग %i में संलग्नक जोड़ रहा है" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "बग पहले से रिपोर्ट किया हुआ है: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s को CC सूची में जोड़ें" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "%d बग में नयी टिप्पणी जोड़ें" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "बेहतर बैकट्रेस जोड़ रहा है" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "बग इतिहास में समान टिप्पणी पायी लेकिन कोई नया जोड़ नहीं रहा है" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "स्थिति: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1724,7 +1762,7 @@ msgstr "" - "पैरामीटर $KerneloopsReporter_SubmitURL से अधिरोहित हो सकता है." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "विन्यास फ़ाइल" - -@@ -1756,12 +1794,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "एक ईमेल भेज रहा है..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "ईमेल इसे भेजा गया: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1774,11 +1812,11 @@ msgstr "" - "समस्या निर्देशिका DIR को ईमेल के द्वारा सामग्री भेजाn\n" - "यदि नहीं निर्दिष्ट है तो CONFFILE इसमें तयशुदा है" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "विन्यास फ़ाइल" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "केवल अधिसूचित करें (रिपोर्ट को बतौर प्रेषित चिह्नित मत करें)" - -@@ -1813,34 +1851,34 @@ msgstr "उपयोक्ता के द्वारा रद्द कि - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "'%s' को लिखने के नहीं खोल सकता है. कृपया दूसरी फ़ाइल चुनें:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "रिपोर्ट को %s में अंतिम में जोड़ा जाता है." - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "रिपोर्ट को %s में अंतिम में जोड़ा गया" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr " सर्वर ने इस एरर का संकेत दिया है: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "क्या आप अभी भी कोई RHTSupport टिकट बनाना चाहते हैं?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1849,77 +1887,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "फ़ाइल अपलोड करें [इस ID के साथ केस में]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "कॉनफिगरेशन द्वारा लोगिन नही दिया गया है. कृपया अपना RHTS लोगिन डालें:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' को '%s' स्थिति में संलग्न कर रहा हूँ" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "अस्थायी निर्देशिका को यहाँ में बना नहीं सकता है" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "संकुचित आँकड़ा " - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "अस्थायी निर्देशिका को यहाँ में बना नहीं सकता है" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "यहाँ अस्थायी निर्देशिका को बना नहीं सकता है" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "सुझावों के लिए जाँचा जा रहा है" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "नया केस बनाए" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "प्रोब्लेम डेटा से पता नही कर सकते RH Support Product का" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "%s केस में नयी टिप्पणी जोड़ें" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "प्रोब्लेम डेटा को केस '%s' से जोड़े " -@@ -1932,45 +1974,49 @@ msgstr "दस्तावेज़ीकरण जो प्रासंगि - msgid "Updates which possibly help: " - msgstr "अद्यतन जो संभवतः मदद कर सकता है:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "बिना यूआरएल के आगे नही बढ़ सकते" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "अभिलेख बनाया गया: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"समस्या निर्देशिका DIR को URL में संकुचित टारबॉल अपलोड करें.\n" --"यदि URL निर्दिष्ट नहीं है, टारबॉल को यहाँ बनाता है " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "बेस URL जिसमें अपलोड किया जाना है" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1987,7 +2033,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2030,48 +2076,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2079,47 +2125,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2155,39 +2201,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2352,6 +2401,22 @@ msgstr "FTP प्रॉक्सी" - msgid "Sets the proxy server to use for FTP" - msgstr "प्रॉक्सी सर्वर को सेट किया गया है FTP के इस्तेमाल के लिए" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "यू-रिपोर्ट" -@@ -2417,7 +2482,7 @@ msgstr "बग %i बंद है लेकिन इसका कोई सम - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "बग %i बतौर नकली बंद है, लेकिन इसका कोई DUP_ID नहीं है" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2427,17 +2492,17 @@ msgstr "" - "कृपया https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-टिकट " - "को अधिक सूचना के लिए देखें" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "नया बग id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "बगजिला के पास बग %d के लिए कोई जनक नहीं ढूँढ़ सका" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) रिटर्न वॅल्यू में मेंबर 'bugs' नही थे" - -@@ -2630,39 +2695,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "सर्वर का URL दीजिए" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "यू-रिपोर्ट सर्वर पर असुरक्षित कनेक्षन की अनुमति दे" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "uReport का bthash संलग्न करने के लिए (-A से विरोध में)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "किसी bthash reported_to (-a के साथ विरोध में) के साथ संलग्न करें" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "ईमेल पता से संपर्क करें (requires -a|-A, conflicts with -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2670,29 +2735,53 @@ msgstr "" - "ईमेल पता से संपर्क करें वातावरण या विन्यास फ़ाइल से (requires -a|-A, " - "conflicts with -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ बग संलग्न करें (requires -a|-A, conflicts with -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "अंतिम RHBZ बग को reported_to से संलग्न करें (requires -a|-A, conflicts with -" - "b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2701,33 +2790,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "यह समस्या का uReport निर्धारित नही हुआ है." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "यह समस्या अब तक बगज़ीला मे रिपोर्ट नही की गयी है" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "बगज़ीला के URL '%s' में बग ID नही मिला" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "बगज़ीला के URL '%s' से बग ID पार्स नही हुआ" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2735,19 +2834,19 @@ msgstr "" - "न तो वातावरण चर 'uReport_ContactEmail' न ही विन्यास विकल्प 'ContactEmail' " - "सेट है" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "आपको बताना चाहिए की bthash ऑफ uReport टू अटॅच." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "खाली यू-रिपोर्ट अपलोड नही की जा सकती" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "यह समस्या पहले ही रिपोर्ट की जा चुकी है" - -diff --git a/po/hu.po b/po/hu.po -index ff62012..504b0c6 100644 ---- a/po/hu.po -+++ b/po/hu.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/hu/)\n" - "Language: hu\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -180,46 +180,43 @@ msgstr "Válasszon egy eseményt a futtatáshoz:" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr " cpio kibontása innen {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Nem írható itt '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Csomag kibontása sikertelen '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Fájlok gyorstárzása {0} innen történik {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Fájlok kibontása sikertelen innen '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Nem eltávolítható '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Letöltés folyamatban ({0} / {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -227,83 +224,90 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Szükséges csomagok keresése a tárolókban" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo fájlokhoz nem találhatóak csomagok" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Letöltendő csomagok: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Letöltésre ütemezve {0:.2f}Mb, ez telepítve: {1:.2f}Mb. Folytatja?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Letöltés felhasználó által megszakíva" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "{0} csomag letöltése nem sikerült" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Kicsomagolás sikertelen, letöltés megszakításra kerül..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} eltávolítása" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -311,38 +315,38 @@ msgstr "" - "Hiba '{0!s}' merült fel a tükörről való letöltés közben: '{1!s}'. " - "Megpróbáljuk a következőt." - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Yum előkészítése sikertelen (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Hiba: cache mappa nem készíthető célon, kilépés" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "A tároló nem kapcsolható le '{0!s}': {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Az aszinkron letöltés nem állítható meg, a kimenet fontos dolgokat is " - "tartalmazhat!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Nem beállítható {0}: {1}, figyelmen kívül hagyva" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Metadat letöltése sikertelen: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Fájllisták letöltése sikertelen: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -391,7 +395,7 @@ msgstr "Események" - msgid "C_onfigure" - msgstr "Beállítás_ok" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -417,7 +421,7 @@ msgstr "Gnome kulcskarika nem elérhető, a beállításai nem kerülnek mentés - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -509,7 +513,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternatív GUI fájl" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -518,15 +522,15 @@ msgstr "" - "Egy írható könyvtárra lenne szükség, de '%s' nem írható. Mozgassuk '%s' " - "célra és munkát folytassuk az elmozgatott adatokon?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Szövegfájl megtekintése/szerkesztése" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -534,39 +538,39 @@ msgstr "" - "NIncsenek céljelentések meghatározva erre a problémára. Ellenőrizze az " - "összeállításokat itt: /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(szügséges: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(nem szügséges, az adatok már léteznek: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(kattintson ide hogy megtekintse/szerkessze)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(bináris fájl, %llu byte)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(nincs leírás)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu byte, %u fájl" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Feldolgozás megszakítva" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -575,7 +579,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -583,7 +587,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -595,76 +599,49 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "A feldolgozás megszakadt, mivel a probléma nem bejelenthető." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Feldolgozás sikertelen." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Feldolgozás befejeződött." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Feldolgozás befejeződött, kérem folytassa a következő lépéssel." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Nincs meghatározva feldolgozás a '%s' eseményhez" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "Feldolgozás megszakítva: nem folytatható írható mappa nélkül" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Feldolgozás..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Nem ellenőrizhető a nyomkövetés minősítése mivel hibás az esemény neve" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -673,99 +650,107 @@ msgstr "" - "Az esemény: %s - engedélyre van szügsége hogy elküldhessen valószínűleg " - "érzékeny " - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "A problémát inkább ne jelentse (ez egy ismert problémának tűnik). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' nem egy szokványos fájl" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Önmagára próbálja másolni a fájlt" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Az '%s' nem másolható: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Az '%s' elem már létezik és nem módosítható" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Hozzáadva" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Név" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Értéke" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Probléma leírása" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Válassza ki hogyan jelenti a problémát" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "További infirmációk megadása" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Adatok áttekintése" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Erősítse meg az adatokat a jelentéshez" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Feldolgozás" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Feldolgozás kész" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Feltöltés elemzésre" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Részletek" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -816,26 +801,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -846,7 +811,7 @@ msgstr "" - "összegyűjtött adatokat, és hogy hová kívánja jelenteni a felmerült problémát." - " Kattintson a 'Folytatás' gombra ha elkezdhetjük." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -856,11 +821,11 @@ msgstr "" - "további információ hasznos lehet a probléma megállapításához? Kérem " - "használjon angol nyelvet amennyiben ez lehetséges." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Ki kell töltenie mielött folytatná..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -868,31 +833,31 @@ msgstr "" - "A bejegyzései nem zártak. Publikusan látható jelentésekben " - "megjelenhetnek." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Ha nem tudja hogyan írja le, megteheti hogy " - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "képernyőképeket/felvételt ad hozzá" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Nem tudom mi okozhatta ezt a problémát" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Mérete:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Mellékeljen egy fájlt" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Átnéztem az _adatokat és egyetértek a beküldésükkel" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -903,19 +868,19 @@ msgstr "" - "eltávolította. Nyomkövetési adatok, parancsok, környezeti változók viszont " - "amik szükségesek a vizsgálathoz." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Feldolgozás még nem kezdődött el" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Log megjelenítése" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Bejelentés befejeződött. Bezárhatja ezt az ablakot." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -925,16 +890,15 @@ msgstr "" - "információt gyűjtene, vagy jobb leírást adna a korábbi helyett és " - "megismételné a folyamatot, kérem kattintson a 'Folytatás' gombra." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Legyen részletes" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Hibagyűjtő mappa" - -@@ -960,89 +924,130 @@ msgstr "nem hibagyűjtő mappa" - msgid "Can't delete '%s': %s" - msgstr "Nem törölhető: '%s': %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Hiányzó szügséges elem: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid értéke érvénytelen: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Hiányzó szügséges elem: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Feltöltve: %llu / %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s küldése ide %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s sikeresen elküldve ide %s" -+msgid "gzip exited with %d" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Hiányzó fontos érték" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Érvénytelen UTF8 karakter '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Érvénytelen szám '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Érvénytelen boolean érték '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Nem támogatott opciótípus" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Kérem jelezze ezt a hibát az ABRT fejlesztői felé." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1050,17 +1055,17 @@ msgstr "" - "A nyomkövetési információk hiányosak, kérem biztosítsa hogy a reprodukálási " - "lépések pontosan belekerüljenek." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "A nyomkövetési információ valószínűleg nem tud segíteni a fejlesztőnek a " - "hibakeresésben." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "A jelentés használhatatlan, így nem lehet elküldeni." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1069,11 +1074,26 @@ msgstr "" - "Kérem próbálja meg a debuginfo csomagokat kézzel telepíteni ennek a " - "parancsnak a segítségével: \"debuginfo-install %s\" és próbálja újra." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "A helyes debuginfo csomag hiányzik, vagy a coredump hibás." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1082,59 +1102,69 @@ msgstr "A problémáját valószínűleg ez okozta: %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "A problémáját valószínűleg ezek közül az egyik okozta:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - "uReport feltöltése nem sikerült a '%s' szerverre curl segítségével: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "Az URL '%s' nem létezik (404 a kiszolgálótól)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "A kiszolgáló '%s' belső hibát észlelt (ERROR 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "Kiszolgáló válasz adatai innen - '%s' helytelen formátumúak" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "Típus eltérés érzékelve a válaszban innen - '%s'" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Sikertelen a hiba beküldése" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "A '%s' kiszolgáló hibával válaszolt: '%s'" -@@ -1165,22 +1195,35 @@ msgstr "Nyomkövetési információ nem értelmezhető: %s" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "Stacktrace leírás nem előállítható (nincs összeomlási szál?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' megszakítva - SIG %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' befejeződött sikeresen)\n" - "\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' kilépett ezzel: %u )\n" -@@ -1268,32 +1311,58 @@ msgid "Bugzilla account password" - msgstr "Bugzilla felhasználói jelszó" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Hozzáférés szűkítése" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Hozzáférés szűkítése az elkészített bugzilla tikettnél - csak meghatározott " -+"csoportoknak, vagy felhasználóknak teszi lehetővé a megtekintését (tekintse " -+"meg a bővített beállításokat a további részletekhez)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Csoportok" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Hozzáférés korlátozása meghatározott csoportok számára <a href=\"https://" -+"github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</" -+"a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Buzilla kiszolgáló címe" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL ellenőrzése" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Ellenőrizze a SSL kulcs érvényességét" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla termék" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1301,11 +1370,11 @@ msgstr "" - "Csak akkor definiálja ezt, ha szükséges más termékhez, mint az '/etc/os-" - "release'-ben meghatározott " - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla termék verziója" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1313,8 +1382,8 @@ msgstr "" - "Csak akkor definiálja ezt, ha szükséges más termékhez, mint az '/etc/os-" - "release'-ben meghatározott " - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1323,8 +1392,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP Proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1333,8 +1402,8 @@ msgstr "HTTP Proxy" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTP használathoz egy proxy szervert állít be" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1343,8 +1412,8 @@ msgstr "HTTP használathoz egy proxy szervert állít be" - msgid "HTTPS Proxy" - msgstr "HTTPS Proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1353,33 +1422,6 @@ msgstr "HTTPS Proxy" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS használatához egy proxy szervert állít be" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Hozzáférés szűkítése" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Hozzáférés szűkítése az elkészített bugzilla tikettnél - csak meghatározott " --"csoportoknak, vagy felhasználóknak teszi lehetővé a megtekintését (tekintse " --"meg a bővített beállításokat a további részletekhez)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Csoportok" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Hozzáférés korlátozása meghatározott csoportok számára <a href=\"https://" --"github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</" --"a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1418,13 +1460,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Nem folytathatja bejelentkezés nélkül" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Nem folytathatja jelszó nélkül" -@@ -1437,11 +1479,9 @@ msgstr "Bejeletkezés a Bugzilla rendszerbe: %s" - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"Helytelen jelszó vagy bejelentkezési név. Kérem adja meg a Bugzilla bejelentkezési " --"nevét:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1458,7 +1498,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1493,73 +1533,90 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Konfigurációs fájl (többször is szerepelhet)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Fájl formázása kezdeti megjegyzéshez" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Fájl formázása a duplikátumokhoz" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Mellékeljen fájlokat [ehhez a hibához ezzel az ID-vel]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "ha hibajelentést készít, mellékeljen bináris fájlokat is" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Jelentse be akkor is ha ezt a problémát már bejelentették" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - "Bugzilla felhasználó hozzáadása a CC listához [ezzel az azonosítóval " - "rendelkező hibához]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Nyomtassa a BUG_ID-t aminek DUPHASH értéket adott" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Szűkítse le a hozzáférését csak erre a csoportra" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Hibakeresés" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Hasonló problémák keresése a bugzillában" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." - msgstr "" --"Bejelentkezési azonosítója nem lett megadva a konfigurációban. Kérem adja " --"meg a Bugzilla azonosítóját:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1568,14 +1625,14 @@ msgstr "" - "Jelszó nem került megadásra a konfigurációban. Kérem adja meg a jelszavát " - "'%s' számára: " - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - "Bugzilla ID nem elérhető mivel a probléma még nem került bejelentésre." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1584,77 +1641,99 @@ msgstr "" - "Ez a probléma már bejelentésre került a Bugzilla '%s' nyomkövetőre, ami " - "különbözik a beállított Bugzilla '%s'-től." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Hibás url a Bugzilla '%s' számára." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID '%s' felhasználásával" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Kijelentkezés" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "Bugzilla termék nem meghatározható a probléma adataiból" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Duplikátumok ellenőrzése" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Új jelentés készül" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Új hiba készítése sikertelen." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Mellékletek hozzáadása a %i hibához" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "A hiba már bejelentésre került: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s hozzáadása a listához" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Új megjegyzés hozzáfűzése a %d hibához" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Pontosabb nyomonkövetés mellékelése" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Ugyanazon megjegyzés található meg a hiba korábbi bejegyzéseiben, nincs új " - "hozzáfűzés" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Státusz: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1689,7 +1768,7 @@ msgstr "" - "Paraméter felülírható a $KerneloopsReporter_SubmitURL -en keresztül." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Konfigurációs fájl" - -@@ -1719,12 +1798,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Email küldése..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "E-mail elküldve ide: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1738,11 +1817,11 @@ msgstr "" - "\n" - "Ha másképp nincs meghatározva, CONFFILE alapértelmezése ez " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Konfigurációs fájl" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Csak jelezze. (Ne jelölje meg elküldöttként a jelentést)" - -@@ -1777,34 +1856,34 @@ msgstr "Felhasználó által megszakítva." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "'%s' írásra nem nyitható meg. Kérem válasszon másik fájlt: " - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "A jelentés mellékelve ide: %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "A jelentés tárolásra került ehhez: %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "Kiszolgáló hibával válaszolt: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Még mindig szeretne egy RHTSupport tikettet készíteni?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1813,77 +1892,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILE-ok feltöltése [ehhez az esethez, ezzel az ID-vel]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Mellékelem '%s' esethez: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Adatok tömörítése" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Tanácsok keresése" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Új hibaeset készítése" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "Nem meghatározható az RH Support Product a probléma adataiból." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Új megjegyzés hozzáfűzése a '%s' esethez" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Probléma adatainak mellékelése az '%s' esethez" -@@ -1896,41 +1979,49 @@ msgstr "Dokumentáció ami fontos lehet: " - msgid "Updates which possibly help: " - msgstr "Frissítések amelyek valószínűleg segíthetnek: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Archív elkészült: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Alap URL a feltöltéshez ide" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1947,7 +2038,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1990,48 +2081,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2039,47 +2130,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2115,39 +2206,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2313,6 +2407,22 @@ msgstr "FTP Proxy" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP használatához egy proxy szervert állít be" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2378,7 +2488,7 @@ msgstr "A %i számú hiba LEZÁRVA, de nincs MEGOLDÁSA" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Az %i számú hiba LEZÁRVA mint DUPLIKÁLT, de nincs DUP_ID-je." - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2388,17 +2498,17 @@ msgstr "" - "meghatározva, kérem tekintse meg a részleteket itt: https://github.com/abrt/" - "abrt/wiki/FAQ#creating-private-bugzilla-tickets további információkért." - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Új hiba ID: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla nem találja a kiindulási hibát a %d számú hibánál" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Bug.search(quicksearch) visszaadott értéke nem tartalmazott 'bugs' részt" -@@ -2592,65 +2702,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Adjon meg egy kiszolgáló URL linkjét" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Engedélyezzen nem biztonságos kapcsolatot a uReport kiszolgálóhoz" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2659,51 +2793,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Ennek a problémának nincs hozzákapcsolat uReport része. " - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "A hiba még nem került bejelentésre a Bugzillába." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Nem található a hiba ID száma bugzilla URL '%s' részéből." - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Értelmezhetetlen a hiba ID száma bugzilla URL '%s' részéből." - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Meg kell határoznia a uReport bthash részét a mellékeléshez." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Üres uReport nem tölthető fel" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "A hiba már bejelentésre került." - -diff --git a/po/ia.po b/po/ia.po -index d2d0a9e..96935b4 100644 ---- a/po/ia.po -+++ b/po/ia.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/ia/)\n" - "Language: ia\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -175,46 +175,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -222,118 +219,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Removente {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -382,7 +386,7 @@ msgstr "Eventos" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -408,7 +412,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -487,60 +491,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternar le file GUI" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(clicca hic pro examinar/modificar)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(file binari, %llu bytes)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(necun description)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bytes, %u files" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -549,7 +553,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -557,7 +561,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -569,174 +573,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Necun tractamento pro le evento '%s' es definite" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Incluso" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nomine" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Valor" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detalios" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -783,44 +768,24 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -828,66 +793,65 @@ msgstr "" - "Tu commentarios non es confidential. Illos pote ser includite in " - "reportos de problemas visibile al publico." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Dimension:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -913,89 +877,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "s" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1003,84 +1008,109 @@ msgstr "" - "Le retraciamento es incomplete. Describe le passos pro reproducer le " - "problema." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Le reportage es disactivate proque le retraciamento es inutile." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1111,21 +1141,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1206,49 +1249,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1257,8 +1320,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "Proxy HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1267,8 +1330,8 @@ msgstr "Proxy HTTP" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1277,8 +1340,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1287,27 +1350,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1336,13 +1378,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1357,7 +1399,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1372,7 +1414,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1407,157 +1449,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Cribra (debug)" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1582,7 +1665,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "File de configuration" - -@@ -1612,12 +1695,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1626,11 +1709,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1662,34 +1745,34 @@ msgstr "Cancellate per le usator." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1698,77 +1781,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1781,41 +1868,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1832,7 +1927,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1875,48 +1970,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1924,47 +2019,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2000,39 +2095,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2194,6 +2292,22 @@ msgstr "Proxy FTP" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2259,24 +2373,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2469,65 +2583,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2536,51 +2674,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/id.po b/po/id.po -index 45fa95c..84e9cfb 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/id/)\n" - "Language: id\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -169,46 +169,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -216,118 +213,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -376,7 +380,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -402,7 +406,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -481,60 +485,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -543,7 +547,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -551,7 +555,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -563,174 +567,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Rincian" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -777,109 +762,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -905,172 +869,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1101,21 +1131,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1196,49 +1239,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1247,8 +1310,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1257,8 +1320,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1267,8 +1330,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1277,27 +1340,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1326,13 +1368,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1347,7 +1389,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1362,7 +1404,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1397,157 +1439,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1572,7 +1655,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1602,12 +1685,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1616,11 +1699,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1652,34 +1735,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1688,77 +1771,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1771,41 +1858,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1822,7 +1917,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1865,48 +1960,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1914,47 +2009,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1990,39 +2085,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2184,6 +2282,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2249,24 +2363,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2459,65 +2573,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2526,51 +2664,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/it.po b/po/it.po -index 71fcf91..5532d0c 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -16,7 +16,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -26,7 +26,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.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -190,46 +190,43 @@ msgstr "Selezionare un evento da lanciare:" - msgid "Select a workflow to run: " - msgstr "Seleziona un flusso di lavoro da eseguire:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Estrazione di cpio da {0} in corso" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Impossibile scrivere su '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Impossibile estrarre il pacchetto '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Memorizzazione in cache dei file da {0} creati da {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Impossibile estrarre file da '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Impossibile rimuovere '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Processo di download ({0} di {1}) {2} in corso: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -237,41 +234,41 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Ricerca nei repositori dei pacchetti necessari" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Impossibile trovare i pacchetti per {0} file di debuginfo " - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Pacchetti da scaricare: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "Processo di download {0:.2f}Mb in corso, dimensione installata: {1:.2f}Mb. " - "Continuare?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Processo di download cancellato dall'utente" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -279,7 +276,7 @@ msgstr "" - "Attenzione: Spazio disponibile non sufficiente nella directory tmp '{0}' ({1:" - ".2f}Mb left). Continuare?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -288,38 +285,45 @@ msgstr "" - "Attenzione: Spazio disponibile non sufficiente nella directory cache '{0}' " - "({1:.2f}Mb left). Continuare?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Processo di download del pacchetto {0} fallito" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Decompressione fallita, interruzione del download in corso ..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Rimozione {0} in corso" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -327,38 +331,38 @@ msgstr "" - "Il problema '{0!s}' è apparso mentre si scarica dal mirror: '{1!s}'. Si " - "prova con il successivo" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Errore nella inizializzazione di yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Errore: impossibile creare la cachedir, uscita in corso" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Impossibile disabilitare il repository '{0!s}': {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Non è possibile disabilitare il download ascincrono, l'output potrebbe " - "contenere errori!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Impossibile impostare {0}: {1}, disabilitazione in corso" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Errore durante il recupero dei metadati: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Errore durante il recupero degli elenchi dei file: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "Impossibile copiare il file '{0}': {1}" -@@ -407,7 +411,7 @@ msgstr "Eventi" - msgid "C_onfigure" - msgstr "C_onfigura" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Chiudi" - -@@ -434,7 +438,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Cancella" - -@@ -523,7 +527,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternare file GUI" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -532,15 +536,15 @@ msgstr "" - "È necessaria una directory modificabile; '%s' non può essere modificata. " - "Spostarla su '%s' ed operare sui dati appena spostati?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Visualizza/modifica un file di testo" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "_Salva" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -548,39 +552,39 @@ msgstr "" - "Gli obiettivi di segnalazione non sono definiti per questo problema. " - "Controllare la configurazione in /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(richiede: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(non necessario, i dati esistono già: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(cliccare qui per visualizzare/modificare)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(file binario, %llu byte)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(nessuna descrizione)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu byte, %u file" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "L'analisi è stata cancellata" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -589,7 +593,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -597,7 +601,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -609,79 +613,52 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "L'analisi è stata interrotta perchè il problema non è segnalabile" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Elaborazione fallita." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Processo finito." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Elaborazione terminata, si prega di procedere con il prossimo passo." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Non è definito alcun processo di analisi per l'evento '%s'" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Elaborazione interrotta: impossibile continuare senza una directory " - "scrivibile." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Elaborazione..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Impossibile controllare il rating del backtrace a causa di un nome di evento " - "non valido" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -690,101 +667,109 @@ msgstr "" - "L'evento '%s' richiede il permesso di inviare eventuali dati sensibili.\n" - "Si vuole procedere?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Questo problema non dovrebbe essere riportato (è probabile che sia un " - "problema noto). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Apri" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' non è un file normale" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Si sta cercando di copiare un file su se stesso" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Impossibile copiare '%s': %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "L'oggetto '%s' è già esistente e non è modificabile" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Includi" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nome" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Valore" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Descrizione problema" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Selezionare come riportare il problema" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Fornire informazioni aggiuntive" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Rivedere i dati" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Conferma dati da riportare" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Elaborazione" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Elaborazione eseguita." - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "_Stop" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Carica per analisi" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Avanti" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Dettagli" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Limita l'accesso al report" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -835,26 +820,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Limita l'accesso al report" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Ulteriori informazioni sui report con accesso limitato" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -865,7 +830,7 @@ msgstr "" - "dati raccolti e decidere dove riportare il problema. Selezionare 'Avanti' " - "per procedere." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -875,11 +840,11 @@ msgstr "" - "ripridotto? Ulteriori commenti utili per la diagnosi del problema? Usare " - "l'inglese se possibile." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "È necessario riempire il campo 'Come' prima di poter procedere..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -887,31 +852,31 @@ msgstr "" - "I tuoi commenti non sono privati. Essi possono essere inclusi in " - "report visibili pubblicamente." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Se non si sa come descriverlo, si può" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "aggiungi una registrazione dello schermo" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Non si conosce la causa di questo errore" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Dimensione:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Allega un file" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Ho revisionato i dati e _accetto il loro invio" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -922,19 +887,19 @@ msgstr "" - "comando, variabili dell'ambiente sono generalmente gli oggetti che " - "necessitano di una revisione." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "L'elaboarazione non è ancora partita" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Mostra log" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "La fase di report è terminata. Ora si può chiudere la finestra." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -944,16 +909,15 @@ msgstr "" - "informazioni aggiuntive, o fornire una migliore descrizione del problema e " - "ripetere il processo di riporto, premere 'Avanti'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Sii verboso" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Directory del problema" - -@@ -979,78 +943,119 @@ msgstr "non una directory del problema" - msgid "Can't delete '%s': %s" - msgstr "Non si può cancellare '%s': %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "s" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Manca l'elemento richiesto: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "valore uid non valido: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Manca l'elemento richiesto: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Caricati: %llu di %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Invio di %s a %s in corso" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Invio di %s a %s completato" -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Valore obbligatorio mancante" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Carattere utf8 '%c' non valido" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Numero '%s' non valido" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Valore booleano '%s' non valido" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Tipo di opzione non supportata" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1059,11 +1064,11 @@ msgstr "" - "Impossibile riportare il problema a causa di dati non validi. Il file '%s' " - "non contiene alcun numero." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Prego segnalare questo problema agli sviluppatori del progetto ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1071,17 +1076,17 @@ msgstr "" - "Il backtrace è incompleto, assicurarsi di fornire i passaggi necessari per " - "riprodurre il crash." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "Il backtrace probabilmente non può aiutare gli sviluppatori a diagnosticare " - "il bug." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Notifica disabilitata poichè il backtrace è inutilizzabile." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1090,12 +1095,27 @@ msgstr "" - "Si prega di provare ad installare debuginfo manualmente con il comando: " - "\"debuginfo-install %s\" e riprovare." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "Un corretto debuginfo è probabilmente mancante o il coredump è corrotto." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1104,59 +1124,69 @@ msgstr "Il problema sembra causato da %s⏎\n" - "⏎\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Il problema sembra causato da uno dei seguenti:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "Fallito il caricamento dell'uReport sul server '%s' con curl: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "L'URL '%s' non esiste (errore 404 dal server)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "Il server in '%s' ha riscontrato un errore interno (errore 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - "Il server in '%s' correntemente, non può gestire la richiesta (errore 503) " - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "Risposta HTTP non prevista da '%s': %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "Impossibile analizzare la risposta dal server ureport in'%s'" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "La risposta da '%s' ha formato invalido" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "Tipo non corrispondente è stato rilevato nella risposta da '%s'" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Fallito nell'invio del problema" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "Il server in '%s' ha risposto con un errore: '%s'" -@@ -1189,21 +1219,34 @@ msgstr "" - "Non si riesce a generare la descrizione dello stacktrace (nessuna thread del " - "crash?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' è stato soppresso dal segnale %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' completato con successo)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' è uscito con %u)\n" -@@ -1294,32 +1337,57 @@ msgid "Bugzilla account password" - msgstr "Password account di bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Restringi accesso" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Restringi l'accesso al ticket di bugzilla creato, permettendo solo agli " -+"utenti di gruppi specificati di vederlo (vedere le impostazioni avanzate per " -+"maggiori dettagli)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Gruppi" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Restringi l'accesso a gruppi specifici <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL di Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Indizzo del server Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Verifica SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Controlla la validità della chiave SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Prodotto Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1327,11 +1395,11 @@ msgstr "" - "Specificare questo solo se occorre un prodotto diverso da quanto specificato " - "in /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Versione del prodotto Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1339,8 +1407,8 @@ msgstr "" - "Specificare questo solo se occorre una versione di prodotto diversa da " - "quella specificata in /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1349,8 +1417,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "Proxy HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1359,8 +1427,8 @@ msgstr "Proxy HTTP" - msgid "Sets the proxy server to use for HTTP" - msgstr "Imposta il server proxy da usare per HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1369,8 +1437,8 @@ msgstr "Imposta il server proxy da usare per HTTP" - msgid "HTTPS Proxy" - msgstr "Proxy HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1379,32 +1447,6 @@ msgstr "Proxy HTTPS" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Imposta il server proxy da usare per HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Restringi accesso" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Restringi l'accesso al ticket di bugzilla creato, permettendo solo agli " --"utenti di gruppi specificati di vederlo (vedere le impostazioni avanzate per " --"maggiori dettagli)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Gruppi" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Restringi l'accesso a gruppi specifici <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1445,13 +1487,13 @@ msgstr "" - "argomento di cmdline, la configurazione e la variabile env verranno ignorati" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Non si può continuare senza login" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Non si può continuare senza password" -@@ -1463,10 +1505,10 @@ msgstr "Accesso in corso in Bugzilla in %s" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "Password o login invalida. Inserire il proprio login di Bugzilla:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "Password o login non validi. Digitare la password per '%s':" -@@ -1481,7 +1523,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1515,117 +1557,89 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"o:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"o:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"o:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Riporta il problema su Bugzilla.\n" --"\n" --"Lo strumento legge la DIR. Successivamente accede in Bugzilla e va alla \n" --"ricerca di un bug con lo stesso abrt_hash:HEXSTRING in 'Whiteboard'.\n" --"\n" --"In caso di riscontro negativo verrà creato uno nuovo bug. Gli elementi \n" --"di DIR vengono archiviati nel bug come parte della descrizione o come \n" --"allegati in base alla loro dimensione e tipologia.\n" --"\n" --"In caso contrario se è possibile identificare il bug ed è contrassegnato \n" --"con CLOSED DUPLICATE, lo strumento segue una catena di duplicati \n" --"fino a quando non identifica un bug non-DUPLICATE. Lo strumento \n" --"aggiunge un nuovo commento al bug trovato.\n" --"\n" --"L'URL per il nuovo bug o per quello appena modificato viene stampato\n" --" su stdout e registrato in 'reported_to'.\n" --"\n" --"L'opzione -t carica i FILE sul sito di Bugzilla nel bug già creato. L'ID del " --"bug è \n" --"ricavato dalla directory specificata da -d DIR. Se i dati del problema in " --"DIR \n" --"non sono stati ancora segnalati, il carico dei dati fallisce.\n" --"\n" --"Opzione -tID carica i FILE nel bug con ID specificato in Bugzilla. -d DIR è " --"ignorato.\n" --"\n" --"L'opzione -w aggiunge l'utente in bugzilla all'elenco CC del bug.\n" --"\n" --"L'opzione -r imposta l'ultimo url dall'elemento reporter_to il quale a sua " --"volta avrà un prefisso\n" --"TRACKER_NAME per il campo URL. Questa opzione viene usata solo quando si " --"crea \n" --"un nuovo bug. Il valore predefinito è 'ABRT Server'\n" --"\n" --"Se non specificato, CONFFILE eseguirà un default su " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "File di configurazione (può essere dato numerose volte)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Formattando il file per commento iniziale" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Formattando il file per i duplicati" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Allega FILE [su bug con questo ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Durante la creazione del bug, allega anche i file binari" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Forza il riporto anche se questo problema è già stato notificato." - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "Aggiungi l'utente bugzilla alla lista CC (del bug con questo ID)" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Stampa BUG_ID che ha dato DUPHASH" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "Un nome del bug tracker per un URL aggiuntivo di 'reported_to'" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Restringi l'accesso solo a questo gruppo" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Debug" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Ricerca di problemi simili in bugzilla " - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." - msgstr "" --"Il login non è incluso nella configurazione. Per cortesia inserisci il tuo " --"login Bugzilla:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1634,7 +1648,7 @@ msgstr "" - "La password non è fornita dalla configurazione. Per cortesia digitare la " - "password per '%s':" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1642,7 +1656,7 @@ msgstr "" - "Non si può ottenere l'ID di Bugzilla perché questo problema non è stato " - "ancora riportato a Bugzilla." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1651,78 +1665,100 @@ msgstr "" - "Questo problema è stato riportato a Bugzilla '%s' che è diverso dal Bugzilla " - "configurato '%s'." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "URL malformato a Bugzilla '%s'." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Utllizzando Bugzilla ID '%s'" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Uscita in corso" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - "Non si riesce a determinare il Prodotto Bugzilla dai dati del problema" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Controllo presenza duplicati in corso" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Creazione di un nuovo bug in corso" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Non riuscita la creazione di un nuovo bug" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Aggiunta URL esterno al bug %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Aggiunta di allegati al bug %i in corso" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Il bug è già stato riportato: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "Si aggiunge %s alla lista CC" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Aggiunta di nuovo commento al bug %d in corso" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Associazione di miglior backtrace in corso" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Trovato lo stesso commento nella cronologia del bug, nessun commento nuovo " - "aggiunto" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Stato: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1757,7 +1793,7 @@ msgstr "" - "Il parametro può essere sovrascritto tramite $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "File di configurazione" - -@@ -1789,12 +1825,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Invio di una email in corso..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "L'email è stata inviata a: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1808,11 +1844,11 @@ msgstr "" - "\n" - "Se non specificato, CONFFILE esegue il default su " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "File di config" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Notifica soltanto (Non impostare il report come inviato)." - -@@ -1849,34 +1885,34 @@ msgstr "" - "Impossibile aprire '%s' per un processo di scrittura. Selezionare un altro " - "file:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Il riporto è stato aggiunto a %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Il riporto è stato archiviato su %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "Il server ha risposto con un errore: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Si desidera ancora creare un ticket per RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1885,79 +1921,83 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Carica i FILE [sul caso con questo ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "Il login non è incluso nella configurazione. Inserisci il tuo login RHTS:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Associazione di '%s' al caso '%s' in corso" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Impossibile creare una directory temporanea in" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Compressione dati in corso" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Impossibile creare una directory temporanea in" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Impossibile creare il file temporaneo in" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Controllo per suggerimenti in corso" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Sto creando un nuovo caso" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - "Non si può determinare il prodotto di supporto RH dai dati del problema" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Aggiunta in corso, di commento al caso '%s'" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Assegnazione in corso, dei dati del problema al caso '%s'" -@@ -1970,46 +2010,49 @@ msgstr "Documentazione che potrebbe essere rilevante:" - msgid "Updates which possibly help: " - msgstr "Aggiornmenti che possono essere utili:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Impossibile continuare senza URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Archivio creato: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"Carica il tarball compresso della directory che descrive il problema DIR su " --"URL.\n" --"Se l'URL non è stato specificato creare il tarball in " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "URL di base sul quale eseguire il caricamento" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -2026,7 +2069,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2069,48 +2112,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2118,47 +2161,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2194,39 +2237,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2392,6 +2438,22 @@ msgstr "Proxy FTP" - msgid "Sets the proxy server to use for FTP" - msgstr "Imposta il server proxy da usare per FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2458,7 +2520,7 @@ msgstr "Il bug %i è CHIUSO, ma non presenta alcuna RISOLUZIONE" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Il bug %i è CHIUSO come DUPLICATO, ma non presenta alcun DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2468,17 +2530,17 @@ msgstr "" - "specificato alcun gruppo, per cortesia vedere https://github.com/abrt/abrt/" - "wiki/FAQ#creating-private-bugzilla-tickets per maggiori informazioni" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Nuovo id del bug: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla non è stato in grado di trovare il genitore del bug %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Bug.search(quicksearch) ha ritornato un valore che non contiene il membro " -@@ -2673,39 +2735,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Specifica l'URL del server" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Permetti connessione insicura al server ureport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Utilizza l'autenticazione del client" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "bthash di uReport da allegare (in conflitto con -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "allega a un bthash di reported_to (in conflitto con -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "indirizzo e-mail (ha bisogno di -a|-A, in conflitto con -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2713,29 +2775,53 @@ msgstr "" - "indirizzo e-mail dell'ambiente o file di configurazione (necessita di -a|-A, " - "in conflitto con -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "allega bug RHBZ (necessita di -a|-A, in conflitto con -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "allega ultimo bug RHBZ di reported_to (necessita di -a|-A, in conflitto con -" - "b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2744,33 +2830,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Questo problema non ha un uReport assegnato" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Questo problema non è stato riportato in Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Impossibile trovare l'ID del bug nell'URL di bugzilla '%s'" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Impossibile trovare l'ID del bug nell'URL di bugzilla '%s'" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2778,19 +2874,19 @@ msgstr "" - "La variabile dell'ambiente 'uReport_ContactEmail' e l'opzione di " - "configurazione 'ContactEmail' non sono stati impostati" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Occorre specificare il bthash dell'uReport da allegare." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Non si carica un uReport vuoto" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Questo problema è già stato segnalato." - -diff --git a/po/ja.po b/po/ja.po -index dba5d9d..5e4d442 100644 ---- a/po/ja.po -+++ b/po/ja.po -@@ -13,7 +13,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/ja/)\n" - "Language: ja\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -182,46 +182,43 @@ msgstr "実行するイベントの選択: " - msgid "Select a workflow to run: " - msgstr "実行するワークフローの選択:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "cpio を {0} から抽出中" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "「{0}」 に書き込みできません: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "パッケージ「{0}」を抽出できません" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{0} にある {1} から作成されたファイルをキャッシュ中" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "「{0}」からファイルを抽出できません" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "「{0}」を削除できません: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "ダウンロード中 ({0} / {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -229,118 +226,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "必要なパッケージをリポジトリで検索中" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo ファイルのパッケージが見つかりません" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "ダウンロードするパッケージ: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "ダウンロード中 {0:.2f}Mb、 インストールサイズ: {1:.2f}Mb、 続行しますか?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "ユーザーによってダウンロードが取り消されました" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "警告: 十分な空き容量が一時ディレクトリ '{0}' にありません (残り {1:.2f}MB)。続行しますか?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "警告: 十分な空き容量がキャッシュディレクトリ '{0}' にありません (残り {1:.2f}MB)。続行しますか?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "パッケージ {0} のダウンロードに失敗しました " - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "解凍に失敗しました、 ダウンロードを中止しています…" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} を削除中" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "ミラーからダウンロード中に問題 '{0!s}' が発生しました: '{1!s}'。次のものを試してください。" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum の初期化でエラー発生 (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "エラー: キャッシュディレクトリを作成できません、終了します" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "リポジトリー '{0!s}' を無効化できません: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "非同期ダウンロードを無効化できません、出力に加工されたものが含まれています。" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0} を設定できません: {1}、 無効にしています" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "メタデータの取得中にエラーが発生: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "ファイル一覧の取得中にエラーが発生: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "ファイル '{0}' をコピーできません: {1}" -@@ -389,7 +393,7 @@ msgstr "イベント" - msgid "C_onfigure" - msgstr "設定(_O)" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "閉じる(_C)" - -@@ -415,7 +419,7 @@ msgstr "シークレットサービスが利用できません、設定は保存 - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "キャンセル(_C)" - -@@ -497,60 +501,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "代替の GUI ファイル" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "書き込み可能なディレクトリが必要ですが、「%s」は書き込みできません。 「%s」に移動してから移動したデータで操作してみてください。" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "テキストファイルの表示/編集" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "保存(_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "この問題に対する報告ターゲットが定義されていません。 /etc/libreport/* にある設定を確認してください。" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(必須: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(必要ありません、データがすでに存在しません: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(ここをクリックして 表示/編集)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(バイナリファイル、 %llu バイト)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(説明なし)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu バイト、 %u ファイル" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "処理が中断されました" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -559,7 +563,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -567,7 +571,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -579,75 +583,48 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "問題が報告可能な形式ではなかったため、処理が中断されました。" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "処理に失敗しました。" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "処理が完了しました。" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "処理が完了しました。次のステップに進んでください。" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "イベント '%s' のプロセッシングは定義されていません。" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "処理を中断しました: 書き込み可能なディレクトリなしで続行できません。" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "処理しています..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "無効なイベント名のためバックトレースのレーティングを確認できません" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -655,99 +632,107 @@ msgid "" - msgstr "イベント '%s' はおそらく機微な情報を送信する権限が必要です\n" - "続行したいですか?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "この問題は報告されるべきではありません (おそらく既知の問題と思われます)。 %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "開く(_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "「%s」は普通のファイルではありません" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "ファイルをそのファイル自体にコピーしようとしています" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "「%s」をコピーできません: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "アイテム「%s」はすでに存在しているため変更できません" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "含む" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "名前" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "値" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "問題の説明" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "この問題を報告する方法を選択してください" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "その他の情報の提供" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "データのレビュー" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "報告するデータの確認" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "処理しています" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "処理が完了しました" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "中止 (_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "分析のためにアップロードする" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "転送 (_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "詳細" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "レポートへのアクセスを制限する" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -794,26 +779,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "レポートへのアクセスを制限する" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "Fedora Contrib グループメンバー以外は報告を参照することを許可しません (あなた自身も)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "制限されたアクセスの報告の詳細を参照する" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -821,7 +786,7 @@ msgid "" - msgstr "" - "以下の画面で、問題が発生した順序の説明、問題分析法の選択(必要な場合)、収集データの再確認、及び問題報告先の選択などを依頼されます。「進む」を押して継続します。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -830,41 +795,41 @@ msgstr "" - "この問題がどのようにして発生したか順を追って説明してください。 再現方法を説明してください。 問題の診断に役立つそうなコメントが他にありますか? " - "できれば英語でお願いします。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "方法を記入した後に次に進むことができます..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "コメントはプライベートではありません。公共に見える問題報告に含まれるかも知れません。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "それを説明する方法がわからなければ、次のことができます。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "スクリーンキャストの追加" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "この問題の原因がわかりません。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "サイズ: " - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ファイルの添付" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "データを見直しました、 送信に同意します。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -873,19 +838,19 @@ msgstr "" - "リモートサーバーにレポートを行う場合には、 プライベートなデータがすべて削除済みであることを必ず確認してください (ユーザー名、 パスワードなど)。 " - "バックトレース、 コマンドライン、 環境変数などは特に注意が必要な事項になります。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "処理がまだ開始していません" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "ログの表示" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "報告は終了しました。この画面を今閉じることができます。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -893,16 +858,15 @@ msgid "" - msgstr "" - "異なる送信先に問題を報告したい場合は、追加情報を収集するか、又はより良い問題説明を提供して報告プロセスを繰り返した上で、「進む」を押します。" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "冗長な出力" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "問題ディレクトリ" - -@@ -928,114 +892,170 @@ msgstr "問題ディレクトリではありません" - msgid "Can't delete '%s': %s" - msgstr "'%s' を削除できません: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "必要な項目がありません: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "UID 値が無効です: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "必要な項目がありません: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "アップロード済み: 合計 %llu キロバイトの内 %llu キロバイト" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s を %s に送信しています" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s を %s に正常に送信しました" -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "必須の値がありません" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "無効な utf8 文字 '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "無効な数字 '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "無効な boolean 値 '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "サポートされていないオプションタイプ" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "無効なデータがあり、問題を報告できません。'%s' ファイルが番号を含んでいません。" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "この問題を ABRT プロジェクト開発者に連絡してください。" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "バックトレースが不完全です。再現手順が書かれているかどうか確認してください。" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "おそらくこのバックトレースはバグを診断するときに開発者の役に立ちません。" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "バックトレースが利用できないため、報告機能が無効になっています。" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "次のコマンドを使用して手動で debuginfo をインストールして、再び試してください: \"debuginfo-install %s\"" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "適切な debuginfo がおそらく見つかりません、またはコアダンプが破損しています。" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1044,58 +1064,68 @@ msgstr "あなたの問題は %s により引き起こされた可能性があ - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "あなたの問題は以下のどれかにより引き起こされた可能性があります:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "サーバー '%s' に curl を用いた uReport のアップロードに失敗しました: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' が存在しません (サーバーからエラー 404 の応答)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "'%s' のサーバーが内部エラーになりました (エラー 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "'%s' のサーバーが現在リクエストを処理できません (エラー 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s' より予期しない HTTP 応答です: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "'%s' の uReport サーバーからの応答を構文解析できません" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' からの応答が無効な形式です" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "型の不一致が '%s' からの応答に検出されました" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "問題の提出に失敗しました" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "'%s' のサーバーがエラーを応答しました: '%s'" -@@ -1126,21 +1156,34 @@ msgstr "バックトレースを解析できません: %s" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "スタックトレースの説明を生成できません (クラッシュスレッドがありませんか?)。" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' がシグナル %u によりキルされました)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' が正常に完了しました)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' が %u で終了しました)\n" -@@ -1223,49 +1266,72 @@ msgid "Bugzilla account password" - msgstr "Bugzilla アカウントのパスワード" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "アクセス制限" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"作成した Bugzilla チケットのアクセスを制限します。指定されたグループのユーザーのみが参照できます (詳細は高度な設定を参照してください)。" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "グループ" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"アクセス権を指定されたグループ <a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-" -+"private-bugzilla-tickets\">?</a> に制限します。" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla サーバーのアドレス" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL を照合する" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL キーの妥当性をチェックする" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla 製品" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "/etc/os-release に指定された製品と異なる製品が必要な場合のみ指定してください" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla 製品バージョン" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "/etc/os-release に指定された製品バージョンと異なる製品が必要な場合のみ指定してください" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1274,8 +1340,8 @@ msgstr "/etc/os-release に指定された製品バージョンと異なる製 - msgid "HTTP Proxy" - msgstr "HTTP プロキシ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1284,8 +1350,8 @@ msgstr "HTTP プロキシ" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTP のために使用するプロキシサーバーを設定する" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1294,8 +1360,8 @@ msgstr "HTTP のために使用するプロキシサーバーを設定する" - msgid "HTTPS Proxy" - msgstr "HTTPS プロキシ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1304,30 +1370,6 @@ msgstr "HTTPS プロキシ" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS のために使用するプロキシサーバーを設定する" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "アクセス制限" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"作成した Bugzilla チケットのアクセスを制限します。指定されたグループのユーザーのみが参照できます (詳細は高度な設定を参照してください)。" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "グループ" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"アクセス権を指定されたグループ <a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-" --"private-bugzilla-tickets\">?</a> に制限します。" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1366,13 +1408,13 @@ msgid "" - msgstr "警告、プライベートチケットがすでにコマンドライン引数として指定されています。環境変数と設定を無視します。" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "ログインせずに続行できません" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "パスワードなしで続行できません" -@@ -1384,10 +1426,10 @@ msgstr "%s にある Bugzilla にログインしています" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "無効なパスワードまたはログイン名です。あなたの Bugzilla ログイン名を入力してください:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "無効なパスワードまたはログイン名です。'%s' のパスワードを入力してください:" -@@ -1402,7 +1444,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1436,199 +1478,199 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"または:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"または:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"または:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"問題を Bugzilla に報告します。\n" --"\n" --"このツールは DIR で指定したディレクトリを読み込みます。\n" --"そして、 Bugzilla にログインし、'Whiteboard' において同じ \n" --"ABRT ハッシュ値 (16進の文字列) を持つバグを検索します。\n" --"\n" --"そのようなバグが見つからない場合、新しいバグが作成されます。\n" --"DIR の内容は、その形式と容量に応じて、バグの説明または添付として、\n" --"バグに保存されます。\n" --"\n" --"一方、そのようなバグが見つかり、CLOSED DUPLICATE となっている場合、\n" --"このツールは DUPLICATE 以外のバグを見つけるまで、重複先を追跡します。\n" --"このツールは見つけたバグに新しいコメントを追加します。\n" --"\n" --"新しいまたは変更されたバグの URL が標準出力に出力され、\n" --"'reported_to' 要素内に記録されます。\n" --"\n" --"オプション -t により Bugzilla サイトにすでに作成されたバグに FILE をアップロードします。\n" --"バグ ID が -d DIR で指定されたディレクトリから取得されます。\n" --"DIR にある問題データがまだ Bugzilla に報告されていなければ、アップロードが失敗します。\n" --"\n" --"オプション -tID により Bugzilla サイトにおいて指定された ID を持つバグに\n" --"FILE をアップロードします。 -d DIR は無視されます。\n" --"\n" --"オプション -w により Bugzilla ユーザーをバグの CC 一覧に追加します。\n" --"\n" --"オプション -r により reporter_to に最後に接続した URL を URL 項目に設定します。\n" --"これは TRACKER_NAME の前に付きます。このオプションは新しいバグが項目になる\n" --"ときのみ適用されます。初期値は 'ABRT Server' です。\n" --"\n" --"指定されなければ、CONFFILE が初期値になります。" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "設定ファイル (何回でも供給可能)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "初期コメントのためにファイルを整形しています" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "重複のためにファイルを整形しています" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILEs を添付する [この ID を持つバグに] " - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "バグを作成する時には、バイナリファイルも添付して下さい" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "この問題がすでに報告されている場合でも強制的に報告します" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "bugzilla ユーザーを [この ID を持つバグの] CC 一覧に追加する" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "指定された DUPHASH を持つ BUG_ID を表示します" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "'reported_to' からの追加 URL 用のバグトラッカーの名前" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "アクセスをこのグループのみに制限する" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "デバッグ" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Bugzilla において同様の問題を検索中" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" --msgstr "ログイン情報が設定により指定されていません。Bugzilla ログイン情報を入力してください:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "パスワードが設定されていません。'%s' 向けのパスワードを入力してください:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "この問題がまだ Bugzilla に報告されていないので Bugzilla ID を取得できません。" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "この問題が Bugzilla '%s' に報告されました。設定された Bugzilla '%s' から変更されました。" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Bugzilla '%s' の不正な形式の URL。" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID '%s' を使用しています" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "ログアウトしています" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "問題データから Bugzilla 製品を判断できません" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "重複をチェックしています" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "新しいバグを作成しています" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "新規バグの作成に失敗しました。" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "外部 URL をバグ %i に追加します" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "バグ %i に添付ファイルを追加しています" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "バグは既に報告済みです: %i " - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s を CC 一覧に追加しています" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "新しいコメントをバグ %d に追加しています" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "より適したバックトレースを添付中" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "バグ履歴に同じコメントが見つかりました、 新しいコメントは追加しません" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "状態: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1663,7 +1705,7 @@ msgstr "" - "パラメータは $KerneloopsReporter_SubmitURL で上書きできます。" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "設定ファイル" - -@@ -1693,12 +1735,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "電子メールを送信しています... " - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "電子メールが送信されました: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1712,11 +1754,11 @@ msgstr "" - "\n" - "指定しない場合、 CONFFILE により次のようにデフォルト設定されます。" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "設定ファイル" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "通知のみ(報告を送信としてマークしません)" - -@@ -1750,34 +1792,34 @@ msgstr "ユーザーによって取り消されました。" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "書き込みに「%s」を開くことができません。 別のファイルを選択してください:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "報告は %s に追記されました" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "報告は %s に保存されました" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "サーバーがエラーを応答しました: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "RHTSupport チケットを本当に作成しますか?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1786,77 +1828,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILEs をアップロードします [この ID を持つケースへ]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "ログイン情報が設定により指定されていません。RHTS ログイン情報を入力してください:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' をケース '%s' に添付しています" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "次の場所に一時ディレクトリを作成できません。" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "データの圧縮" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "次の場所に一時ディレクトリを作成できません。" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "次の場所に一時ファイルを作成できません。" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "ヒントを確認中" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "新規ケースの作成中" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "問題データから RH サポート製品を判断できません" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "ケース '%s' にコメントを追加中" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "問題データをケース '%s' に添付中" -@@ -1869,45 +1915,49 @@ msgstr "関連する可能性があるドキュメント:" - msgid "Updates which possibly help: " - msgstr "役に立つ可能性のある更新:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "URL なしで続行できません" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "アーカイブが作成されました: '%s' " - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"問題ディレクトリ DIR の圧縮済み tar ファイルを URL にアップロードします。\n" --"URL を指定しない場合、以下のものが tar ファイルに含まれます。" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "アップロード先のベース URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1924,7 +1974,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1967,48 +2017,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2016,47 +2066,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2092,39 +2142,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2288,6 +2341,22 @@ msgstr "FTP プロキシ" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP のために使用するプロキシサーバーを設定する" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2353,7 +2422,7 @@ msgstr "バグ %i は閉じていますが、RESOLUTION がありません" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "DUPLICATE としてバグ %i は閉じていますが、DUP_ID がありません" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2362,17 +2431,17 @@ msgstr "" - "プライベートチケットの作成が要求されましたが、グループが指定されていません。詳細は https://github.com/abrt/abrt/wiki/" - "FAQ#creating-private-bugzilla-tickets を参照してください。" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "新しいバグ id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla はバグ %d の親を見つけることが出来ません" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) の返り値がメンバー 'bugs' を含みません" - -@@ -2565,65 +2634,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "サーバーの URL を指定します" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "uReport サーバーに非セキュアな接続を許可する" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "クライアント認証を使用する" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "添付する uReport の bthash (-A と競合)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "reported_to からの bthash に添付する (-a と競合)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "連絡先メールアドレス (-a|-A が必須、-E と競合)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "環境または設定ファイルからの連絡先メールアドレス (-a|-A が必須、-e と競合)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ バグの添付 (-a|-A が必須、-B と競合)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "reported_to からの最新の RHBZ を添付する (-a|-A が必須、-b と競合)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2632,51 +2725,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "この問題は uReport が添付されていません。" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "この問題は Bugzilla に報告されていません。" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "bugzilla URL '%s' にバグ ID を見つけられません" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "bugzilla URL '%s' からバグ ID を構文解析できません" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "環境変数 'uReport_ContactEmail' および設定オプション 'ContactEmail' のいずれも設定されていません" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "添付する uReport の bthash を指定する必要があります。" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "空の uReport をアップロードしません" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "この問題はすでに報告されています。" - -diff --git a/po/ka.po b/po/ka.po -index b55cab8..cb1be0c 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: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -170,46 +170,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -217,118 +214,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -377,7 +381,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -403,7 +407,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -482,60 +486,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "ტექსტური ფაილის ნახვა/რედაქტირება" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(ორობითი ფაილი, %llu ბაიტი)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(აღწერა არაა ხელმისაწვდომი)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu ბაიტი, %u ფაილი" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -544,7 +548,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -552,7 +556,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -564,174 +568,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "დამუშავება ვერ მოხერხდა." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "დამუშავება დასრულდა." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "დამუშავება..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "დასახელება" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "მნიშვნელობა" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "პრობლემის აღწერა" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "მონაცემთა გადახედვა" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "დამუშავება" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "დამუშავება დასრულდა" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "დეტალები" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -778,109 +763,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "არ ვიცი რამ გამოიწვია ეს პრობლემა" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "ზომა:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ფაილის მიმაგრება" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "ჟურნალის ჩვენება" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -906,172 +870,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "აიტვირთა: %llu ბაიტი %llu-დან" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "არასწორი utf8 სიმბოლო '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "არასწორი რიცხვი '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "არასწორი ლოგიკური მნიშვნელობა '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1102,21 +1132,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1197,49 +1240,69 @@ msgid "Bugzilla account password" - msgstr "Bugzilla-ის ანგარიშის პაროლი" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla-ის URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla-ის სერვერის მისამართი" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL-ის შემოწმება" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla-ის პროდუქტის ვერსია" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1248,8 +1311,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP პროქსი" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1258,8 +1321,8 @@ msgstr "HTTP პროქსი" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1268,8 +1331,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "HTTPS პროქსი" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1278,27 +1341,6 @@ msgstr "HTTPS პროქსი" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1327,13 +1369,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1348,7 +1390,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1363,7 +1405,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1398,157 +1440,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "გამოსვლა" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "მდგომარეობა: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1573,7 +1656,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "კონფიგურაციის ფაილი" - -@@ -1603,12 +1686,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ელფოსტის გაგზავნა..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1617,11 +1700,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "კონფიგურაციის ფაილი" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1653,34 +1736,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1689,77 +1772,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "მონაცემთა შეკუმშვა" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1772,41 +1859,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "არქივი შეიქმნა: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1823,7 +1918,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1866,48 +1961,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1915,47 +2010,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1991,39 +2086,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2185,6 +2283,22 @@ msgstr "FTP პროქსი" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2250,24 +2364,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2460,65 +2574,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2527,51 +2665,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/kn.po b/po/kn.po -index 96599e1..6363331 100644 ---- a/po/kn.po -+++ b/po/kn.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/kn/)\n" - "Language: kn\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -186,46 +186,43 @@ msgstr "ಚಲಾಯಿಸಲು ಒಂದು ಘಟನೆಯನ್ನು ಆರ - msgid "Select a workflow to run: " - msgstr "ಚಲಾಯಿಸಲು ಒಂದು ಕಾರ್ಯಹರಿವನ್ನು ಆರಿಸಿ:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0} ಇಂದ cpio ಅನ್ನು ಹೊರತೆಗೆಯಲಾಗುತ್ತಿದೆ" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}' ಗೆ ಬರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "'{0}' ಎಂಬ ಪ್ಯಾಕೇಜನ್ನು ಹೊರತೆಗೆಯಲಾಗಿಲ್ಲ" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{1} ಇಂದ ಮಾಡಲಾದ {0} ಇಂದ ಕಡತಗಳನ್ನು ಶೇಖರಿಸಿಡಲಾಗುತ್ತಿದೆ" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' ಇಂದ ಕಡತಗಳನ್ನು ಹೊರತೆಗೆಯಲಾಗಿಲ್ಲ" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' ಅನ್ನು ತೆಗೆದುಹಾಕಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "({1} ರಲ್ಲಿ {0}) {2} ಅನ್ನು ಇಳಿಸಿಕೊಳ್ಳಲಾಗುತ್ತಿದೆ: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -233,41 +230,41 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "ರೆಪೊಸಿಟರಿಗಳಲ್ಲಿ ಅಗತ್ಯವಿರುವ ಪ್ಯಾಕೇಜುಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo ಕಡತಗಳಿಗಾಗಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಪತ್ತೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಪ್ಯಾಕೇಜುಗಳು: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "{0:.2f}Mb ಅನ್ನು ಇಳಿಸಿಕೊಳ್ಳಲಾಗುತ್ತಿದೆ, ಅನುಸ್ಥಾಪಿಸಲಾದ ಗಾತ್ರ: {1:.2f}Mb. " - "ಮುಂದುವರೆಯಬೇಕೆ?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "ಇಳಿಕೆಯನ್ನು ಬಳಕೆದಾರರಿಂದ ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -275,7 +272,7 @@ msgstr "" - "ಎಚ್ಚರಿಕೆ: tmp dir '{0}' ನಲ್ಲಿ ಸಾಕಷ್ಟು ಖಾಲಿ ಸ್ಥಳವಿಲ್ಲ ({1:.2f}Mb ಬಾಕಿ ಇದೆ). " - "ಮುಂದುವರೆಯುವುದೆ?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -284,38 +281,45 @@ msgstr "" - "ಎಚ್ಚರಿಕೆ: ಕ್ಯಾಶ್ dir '{0}' ನಲ್ಲಿ ಸಾಕಷ್ಟು ಖಾಲಿ ಸ್ಥಳವಿಲ್ಲ ({1:.2f}Mb ಬಾಕಿ ಇದೆ)." - " ಮುಂದುವರೆಯುವುದೆ?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "{0} ಎಂಬ ಪ್ಯಾಕೇಜಿನ ಇಳಿಕೆಯು ವಿಫಲಗೊಂಡಿದೆ" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಪ್ಯಾಕೇಜುಗಳು: {}" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} ಅನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತಿದೆ" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -323,38 +327,38 @@ msgstr "" - "ಮಿರರ್ ಇಂದ ಡೌನ್‌ಲೋಡ್ ಮಾಡಿಕೊಳ್ಳುವಾಗ '{0!s}' ತೊಂದರೆಯು ಉಂಟಾಗಿದೆ: '{1!s}'. " - "ಮುಂದಿನದನ್ನು ಪ್ರಯತ್ನಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "ದೋಷ: cachedir ಅನ್ನು ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ, ನಿರ್ಗಮಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "'{0!s}' ರೆಪೊಸಿಟರಿಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿಲ್ಲ: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "async ಇಳಿಕೆಯನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ, ಔಟ್‌ಪುಟ್ ಆರ್ಟಿಫ್ಯಾಕ್ಟುಗಳನ್ನು " - "ಹೊಂದಿರಬಹುದು!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0} ಅನ್ನು ಸಿದ್ಧಗೊಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: {1}, ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "ಮೆಟಾಡೇಟವನ್ನು ಹಿಂದಕ್ಕೆ ಪಡೆಯುವಲ್ಲಿ ದೋಷ: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "ಕಡತಪಟ್ಟಿಗಳನ್ನು ಹಿಂದಕ್ಕೆ ಪಡೆಯುವಲ್ಲಿ ದೋಷ: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "'{0}' ಕಡತವನ್ನು ಪ್ರತಿ ಮಾಡಲಾಗಿಲ್ಲ: {1}" -@@ -403,7 +407,7 @@ msgstr "ಘಟನೆಗಳು" - msgid "C_onfigure" - msgstr "ಸಂರಚಿಸು (_o)" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "ಮುಚ್ಚು (_C)" - -@@ -429,7 +433,7 @@ msgstr "ಸೀಕ್ರೆಟ್ ಸರ್ವಿಸ್ ಲಭ್ಯವಿಲ್ - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "ರದ್ದುಗೊಳಿಸು (_C)" - -@@ -520,7 +524,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "ಪರ್ಯಾಯ GUI ಕಡತ" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -529,15 +533,15 @@ msgstr "" - "ಬರೆಯಬಹುದಾದ ಕೋಶದ ಅಗತ್ಯವಿದೆ, ಆದರೆ '%s' ಎಂಬುದಕ್ಕೆ ಬರೆಯಲು ಅಸಾಧ್ಯವಾಗಿದೆ. ಅದನ್ನು " - "'%s' ಗೆ ಸ್ಥಳಾಂತರಿಸಿ ಮತ್ತು ಸ್ಥಳಾಂತರಿಸಲಾದ ದತ್ತಾಂಶದೊಂದಿಗೆ ಕೆಲಸ ಮಾಡಲು ಬಯಸುವಿರಾ?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "ಒಂದು ಪಠ್ಯ ಕಡತವನ್ನು ನೋಡಿ/ಸಂಪಾದಿಸಿ" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "ಉಳಿಸು (_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -545,39 +549,39 @@ msgstr "" - "ಈ ತೊಂದರೆಗಾಗಿ ಯಾವುದೆ ವರದಿ ಮಾಡುವ ಗುರಿಗಳನ್ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ. /etc/libreport/* " - "ನಲ್ಲಿ ಸಂರಚನೆಯನ್ನು ಪರಿಶೀಲಿಸಿ" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(ಇದರ ಅಗತ್ಯವಿದೆ: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(ಅಗತ್ಯವಿಲ್ಲ, ದತ್ತಾಂಶವು ಈಗಾಗಲೆ ಇದೆ: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(ನೋಡಲು/ಸಂಪಾದಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್‌ ಮಾಡಿ)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(ಬೈನರಿ ಕಡತ, %llu ಬೈಟ್‌ಗಳು)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(ಯಾವುದೆ ವಿವರಣೆ ಇಲ್ಲ)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu ಬೈಟ್‌ಗಳು, %u ಕಡತಗಳು" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "ಸಂಸ್ಕರಣೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿತ್ತು" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -586,7 +590,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -594,7 +598,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -606,79 +610,52 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "ತೊಂದರೆಯನ್ನು ವರದಿ ಮಾಡಲು ಸಾಧ್ಯವಾಗದೆ ಇರುವ ಕಾರಣದಿಂದಾಗಿ ಸಂಸ್ಕರಣೆಗೆ ತಡೆಯುಂಟಾಗಿದೆ." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "ಸಂಸ್ಕರಣೆಯು ವಿಫಲಗೊಂಡಿದೆ." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "ಸಂಸ್ಕರಣೆಯು ಪೂರ್ಣಗೊಂಡಿದೆ." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "ಸಂಸ್ಕರಣೆಯು ಪೂರ್ಣಗೊಂಡಿದೆ, ದಯವಿಟ್ಟು ಮುಂದಿನ ಹಂತಕ್ಕೆ ಹೋಗಿ." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "'%s' ಘಟನೆಗಾಗಿ ಯಾವುದೆ ಸಂಸ್ಕರಣೆಯನ್ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "ಸಂಸ್ಕರಣೆಗೆ ತಡೆಯುಂಟಾಗಿದೆ: ಬರೆಯಬಹುದಾದ ಕೋಶವು ಇಲ್ಲದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "ಸಂಸ್ಕರಿಸಲಾಗುತ್ತಿದೆ..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "ಅಮಾನ್ಯವಾದ ಘಟನೆಯ ಹೆಸರಿನ ಕಾರಣ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ರೇಟಿಂಗ್ ಅನ್ನು ಪರಿಶೀಲಿಸಲು " - "ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -687,100 +664,108 @@ msgstr "" - "ಸಂಭಾವ್ಯ ಸೂಕ್ಷ್ಮಸಂವೇದಿ ದತ್ತಾಂಶವನ್ನು ಕಳುಹಿಸಲು '%s' ಘಟನೆಗೆ ಅನುಮತಿಯ ಅಗತ್ಯವಿದೆ. \n" - "ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುವಿರಾ?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "ತೊಂದರೆಯನ್ನು ವರದಿ ಮಾಡಬಾರದು (ಇದು ಬಹುಷಃ ಒಂದು ಗೊತ್ತಿರುವ ತೊಂದರೆ). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "ತೆರೆ (_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಸಾಮಾನ್ಯವಾದ ಕಡತವಲ್ಲ" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "ನೀವು ಒಂದು ಕಡತವನ್ನು ಪುನಃ ಅದಕ್ಕೆ ಅಂಟಿಸಲು ಪ್ರಯತ್ನಿಸುತ್ತಿದ್ದೀರಿ" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' ನ ಪ್ರತಿ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - "'%s' ಎಂಬ ಅಂಶವು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಮತ್ತು ಅದನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "ಒಳಗೊಳ್ಳಿಸು" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "ಹೆಸರು" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "ಮೌಲ್ಯ" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "ತೊಂದರೆಯ ವಿವರಣೆ" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "ಈ ತೊಂದರೆಯನ್ನು ಹೇಗೆ ವರದಿ ಮಾಡಬೇಕು ಎನ್ನುವುದನ್ನು ಆರಿಸಿ" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಯನ್ನು ಒದಗಿಸಿ" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "ದತ್ತಾಂಶವನ್ನು ಅವಲೋಕಿಸಿ" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "ವರದಿ ಮಾಡಲು ದತ್ತಾಂಶವನ್ನು ಖಚಿತಪಡಿಸಿ" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "ಸಂಸ್ಕರಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "ಸಂಸ್ಕರಿಸುವಿಕೆಯು ಮುಗಿದಿದೆ" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "ನಿಲ್ಲಿಸು (_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "ವಿಶ್ಲೇಷಣೆಗಾಗಿ ಅಪ್‌ಲೋಡ್ ಮಾಡಿ" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "ಮುಂದಕ್ಕೆ (_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "ವಿವರಗಳು" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "ವರದಿಗೆ ನಿಲುಕನ್ನು ನಿರ್ಬಂಧಿಸು" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -831,28 +816,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "ವರದಿಗೆ ನಿಲುಕನ್ನು ನಿರ್ಬಂಧಿಸು" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"ನಿರ್ಬಂಧಿತ ನಿಲುಕಿನ ಮುಖಾಂತರ Fedora Contrib ಗುಂಪಿನ ಸದಸ್ಯರು ಹೊರತುಪಡಿಸಿ ಬೇರೆ ಯಾರೂ " --"ಸಹ ವರದಿಯನ್ನು ನೋಡಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ (ನೀವೂ ಕೂಡ)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "ವರದಿಗಳ ನಿರ್ಬಂಧಿತ ನಿಲುಕಿನ ಕುರಿತು ಇನ್ನಷ್ಟು ಓದಿ" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -863,7 +826,7 @@ msgstr "" - "ತೊಂದರೆಯನ್ನು ಎಲ್ಲಿ ವರದಿ ಮಾಡಬೇಕು ಎಂದು ಆರಿಸಿ, ಎಂದು ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ. " - "ಮುಂದುವರೆಯಲು 'ಮುಂದಕ್ಕೆ' ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -873,11 +836,11 @@ msgstr "" - "ಹೇಗೆ? ತೊಂದರೆಯನ್ನು ಪತ್ತೆ ಮಾಡಲು ಅಗತ್ಯವಿರುವ ಏನಾದರೂ ಹೆಚ್ಚುವರಿ ಟಿಪ್ಪಣಿಗಳಿವೆಯೆ? " - "ಸಾಧ್ಯವಾದಷ್ಟು ಮಟ್ಟಿಗೆ ಇಂಗ್ಲೀಷ್ ಭಾಷೆಯನ್ನು ಬಳಸಿ." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "ನೀವು ಮುಂದುವರೆಯುವ ಮೊದಲು 'ಹೇಗೆ' ಎನ್ನುವುದನ್ನು ತುಂಬಿಸಬೇಕು..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -885,34 +848,34 @@ msgstr "" - "ನಿಮ್ಮ ಟಿಪ್ಪಣಿಗಳು ಖಾಸಗಿಯಾಗಿಲ್ಲ. ಅದನ್ನು ಸಾರ್ವಜನಿಕವಾಗಿ ಕಾಣಿಸಿಕೊಳ್ಳುವ " - "ತೊಂದರೆ ವರದಿಯಲ್ಲಿ ಸೇರಿಸಲಾಗಬಹುದು." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - "ಅದನ್ನು ಹೇಗೆ ನಿರ್ಬಂಧಿಸಬೇಕು ಎಂದು ನಿಮಗೆ ತಿಳಿದಿರದೆ ಇದ್ದಲ್ಲಿ, ನೀವು ಹೀಗೆ ಮಾಡಬಹುದು" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "ಒಂದು ಸ್ಕ್ರೀನ್‌ಕ್ಯಾಸ್ಟನ್ನು ಸೇರಿಸಿ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "ತೊಂದರೆಗೆ ಕಾರಣವೇನು ಎಂದು ನನಗೆ ತಿಳಿದಿಲ್ಲ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "ಗಾತ್ರ:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ಕಡತವನ್ನು ಲಗತ್ತಿಸಿ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - "ನಾನು ದತ್ತಾಂಶವನ್ನು ಅವಲೋಕಿಸಿದ್ದೇನೆ ಮತ್ತು ಅದನ್ನು ಸಲ್ಲಿಸಲು ಒಪ್ಪಿಗೆ ನೀಡುತ್ತೇನೆ " - "(_a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -923,19 +886,19 @@ msgstr "" - "ಪರಿಶೀಲನೆಗಾಗಿ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್, ಆಜ್ಞಾ ಸಾಲು, ಪರಿಸರ ವೇರಿಯೇಬಲ್‌ಗಳಂತಹ ಸಾಮಾನ್ಯ " - "ಮಾಹಿತಿಗಳ ಅಗತ್ಯವಿರುತ್ತದೆ." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "ಸಂಸ್ಕರಣೆಯು ಇನ್ನೂ ಸಹ ಆರಂಭಗೊಂಡಿಲ್ಲ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "ದಿನಚರಿಯನ್ನು ತೋರಿಸು" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಲಾಗಿದೆ. ನೀವು ಈಗ ಈ ವಿಂಡೊವನ್ನು ಮುಚ್ಚಬಹುದು." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -945,16 +908,15 @@ msgstr "" - "ಮಾಹಿತಿಯನ್ನು ಸಂಗ್ರಹಿಸಿ, ಅಥವ ತೊಂದರೆಯ ಇನ್ನೂ ಉತ್ತಮ ವಿವರಣೆಯನ್ನು ಒದಗಿಸಿ ಮತ್ತು " - "ವರದಿಯ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಪುನರಾವರ್ತಿಸಿ, 'ಮುಂದಕ್ಕೆ' ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "ವರ್ಬೋಸ್ ಆಗಿರು" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "ತೊಂದರೆಯ ಕೋಶ" - -@@ -980,78 +942,119 @@ msgstr "ಒಂದು ತೊಂದರೆಯ ಕೋಶವಲ್ಲ" - msgid "Can't delete '%s': %s" - msgstr "'%s' ಅನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "ಅಗತ್ಯವಿರುವ ಅಂಶವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid ಮೌಲ್ಯವು ಮಾನ್ಯವಾಗಿಲ್ಲ: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "ಅಗತ್ಯವಿರುವ ಅಂಶವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "ಅಪ್‌ಲೋಡ್ ಮಾಡಲಾಗಿದ್ದು: %llu, %llu kbytes ನಲ್ಲಿ" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s ಅನ್ನು %s ಗೆ ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s ಅನ್ನು %s ಗೆ ಯಶಸ್ವಿಯಾಗಿ ಕಳುಹಿಸಲಾಗಿದೆ" -+msgid "gzip exited with %d" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "ಕಡ್ಡಾಯವಾದ ಮೌಲ್ಯವು ಕಾಣಿಸುತ್ತಿಲ್ಲ" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "ಅಮಾನ್ಯವಾದ utf8 ಅಕ್ಷರ '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "ಅಮಾನ್ಯವಾದ ಸಂಖ್ಯೆ '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "ಅಮಾನ್ಯವಾದ ಬೂಲಿಯನ್ ಮೌಲ್ಯ '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "ಬೆಂಬಲವಿಲ್ಲದ ಆಯ್ಕೆಯ ಬಗೆ" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1060,11 +1063,11 @@ msgstr "" - "ತಪ್ಪು ದತ್ತಾಂಶದ ಕಾರಣ ತೊಂದರೆಯನ್ನು ವರದಿ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ. '%s' ಕಡತವು ಒಂದು " - "ಸಂಖ್ಯೆಯನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "ದಯವಿಟ್ಟು ಈ ತೊಂದರೆಯನ್ನು ABRT ಯೋಜನಾ ವಿಕಸನೆಗಾರರಿಗೆ ವರದಿ ಮಾಡಿ." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1072,19 +1075,19 @@ msgstr "" - "ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅಪೂರ್ಣಗೊಂಡಿದೆ, ಇದನ್ನು ಮರಳಿ ಉತ್ಪಾದಿಸಲು ವಿವರಣೆಯುಕ್ತ ಸೂಚನೆಗಳನ್ನು " - "ಒದಗಿಸಿದ್ದೀರಿ ಎಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "ದೋಷದ ಕಾರಣವನ್ನು ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಬಹುಷಃ ವಿಕಸನೆಗಾರರಿಗೆ ಯಾವುದೆ ನೆರವನ್ನು ನೀಡುವುದಿಲ್ಲ." - "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - "ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಬಳಸಲು ಯೋಗ್ಯವಾಗಿರದೆ ಇರುವುದರಿಂದ ವರದಿ ಮಾಡುವುದನ್ನು " - "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1093,11 +1096,26 @@ msgstr "" - "ದಯವಿಟ್ಟು \"debuginfo-install %s\" ಅನ್ನು ಬಳಸಿ debuginfo ಅನ್ನು ಅನುಸ್ಥಾಪಿಸಲು " - "ಪ್ರಯತ್ನಿಸಿ ನಂತರ ಇನ್ನೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "ಒಂದು ಸರಿಯಾದ debuginfo ಕಾಣಿಸುತ್ತಿಲ್ಲ ಅಥವ ಕೋರ್-ಡಂಪ್ ಹಾಳಾಗಿದೆ." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1106,29 +1124,39 @@ msgstr "ನಿಮ್ಮ ತೊಂದರೆಯು ಬಹುಷಃ %s ಇಂದ - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "ನಿಮ್ಮ ತೊಂದರೆಯು ಬಹುಷಃ ಈ ಕೆಳಗಿನವುಗಳಲ್ಲಿ ಒಂದರಿಂದ ಆಗಿರಬಹುದು:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - "uReport ಅನ್ನು ಈ curl ಅನ್ನು ಹೊಂದಿರುವ '%s' ಪೂರೈಕೆಗಣಕಕ್ಕೆ ಅಪ್‌ಲೋಡ್ ಮಾಡಲು " - "ವಿಫಲಗೊಂಡಿದೆ: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ (ಪೂರೈಕೆಗಣಕದಿಂದ 404 ದೋಷವು ಕಂಡುಬಂದಿದೆ)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - "'%s' ನಲ್ಲಿರುವ ಪೂರೈಕೆಗಣಕಕ್ಕೆ ಒಂದು ಆಂತರಿಕ ದೋಷವು ಎದುರಾಗಿದೆ (ದೋಷ 500 ಕಂಡುಬಂದಿದೆ)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" -@@ -1136,34 +1164,34 @@ msgstr "" - "ದೋಷವು ಎದುರಾಗಿದೆ)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s' ಇಂದ ಅನಿರೀಕ್ಷಿತ HTTP ಪ್ರತಿಕ್ರಿಯೆ: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - "'%s ಎಂಬಲ್ಲಿರುವ ureport ಪೂರೈಕೆಗಣಕದಿಂದ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಪಾರ್ಸ್ ಮಾಡಲಾಗಿಲ್ಲ" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' ಇಂದ ಬಂದ ಪ್ರತಿಕ್ರಿಯೆಯು ಅಮಾನ್ಯವಾದ ವಿನ್ಯಾಸವನ್ನು ಹೊಂದಿದೆ" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "'%s' ಇಂದ ಬಂದ ಪ್ರತಿಕ್ರಿಯೆಯಲ್ಲಿ ಹೊಂದಾಣಿಕೆಯಾಗದ ಬಗೆಯು ಕಂಡುಬಂದಿದೆ" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "ತೊಂದರೆಯನ್ನು ಸಲ್ಲಿಸುವಲ್ಲಿ ವಿಫಲತೆ" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "'%s' ನಲ್ಲಿನ ಪೂರೈಕೆಗಣಕವು ಒಂದು ದೋಷದೊಂದಿಗೆ ಪ್ರತಿಕ್ರಿಯಿಸಿದೆ: '%s'" -@@ -1196,21 +1224,34 @@ msgstr "" - "ಸ್ಟ್ಯಾಕ್‌ಟ್ರೇಸ್ ವಿವರಣೆಯನ್ನು ಉತ್ಪಾದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ (ಯಾವುದೆ ಕ್ರಾಶ್ ತ್ರೆಡ್ " - "ಇಲ್ಲವೆ?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' ಅನ್ನು %u ಸಂಕೇತದಿಂದ ನಿಲ್ಲಿಸಲಾಗಿದೆ)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' ಸಂಪೂರ್ಣವಾಗಿ ಯಶಸ್ವಿಯಾಗಿದೆ)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' ಎನ್ನುವುದು %u ಇಂದ ನಿರ್ಗಮಿಸಿದೆ)\n" -@@ -1299,32 +1340,58 @@ msgid "Bugzilla account password" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ ಖಾತೆ ಗುಪ್ತಪದ" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "ನಿರ್ಬಂಧಿತ ನಿಲುಕು" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"ರಚಿಸಲಾದ ಬಗ್‌ಝಿಲ್ಲಾ ಟಿಕೆಟ್‌ಗೆ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಒದಗಿಸುವುದರಿಂದ ಕೇವಲ " -+"ನಿರ್ದಿಷ್ಟ ಗುಂಪುಗಳ ಬಳಕೆದಾರರು ಮಾತ್ರ ಅದನ್ನು ನೋಡಲು ಸಾಧ್ಯವಿರುತ್ತದೆ (ಹೆಚ್ಚಿನ " -+"ವಿವರಗಳಿಗಾಗಿ ಸುಧಾರಿತ ಸಿದ್ಧತೆಗಳು ಅನ್ನು ನೋಡಿ)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "ಗುಂಪುಗಳು" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"ನಿಶ್ಚಿತ ಗುಂಪುಗಳು ಮಾತ್ರ ನಿಲುಕಿಸಿಕೊಳ್ಳುವಂತೆ ನಿರ್ಬಂಧಿಸಿ <a href=\"https://" -+"github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</" -+"a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ ಪೂರೈಕೆಗಣಕದ ವಿಳಾಸ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL ಅನ್ನು ಪರಿಶೀಲಿಸು" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL ಕೀಲಿಯ ಮಾನ್ಯತೆಯನ್ನು ಪರಿಶೀಲಿಸಿ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ ಉತ್ಪನ್ನ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1332,11 +1399,11 @@ msgstr "" - "ಅಗತ್ಯವಿರುವ ಉತ್ಪನ್ನವು /etc/os-release ನಲ್ಲಿ ಸೂಚಿಸಲಾದುದಕ್ಕಿಂತ ಭಿನ್ನವಾಗಿದ್ದರೆ " - "ಮಾತ್ರ ಇದನ್ನು ಸೂಚಿಸಿ." - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ ಉತ್ಪನ್ನ ಆವೃತ್ತಿ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1344,8 +1411,8 @@ msgstr "" - "ಅಗತ್ಯವಿರುವ ಉತ್ಪನ್ನದ ಆವೃತ್ತಿಯು /etc/os-release ನಲ್ಲಿ ಸೂಚಿಸಲಾದುದಕ್ಕಿಂತ " - "ಭಿನ್ನವಾಗಿದ್ದರೆ ಮಾತ್ರ ಇದನ್ನು ಸೂಚಿಸಿ." - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1354,8 +1421,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP ಪ್ರಾಕ್ಸಿ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1364,8 +1431,8 @@ msgstr "HTTP ಪ್ರಾಕ್ಸಿ" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTP ಗಾಗಿ ಬಳಸಲು ಪ್ರಾಕ್ಸಿ ಪೂರೈಕೆಗಣಕವನ್ನು ಹೊಂದಿಸುತ್ತದೆ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1374,8 +1441,8 @@ msgstr "HTTP ಗಾಗಿ ಬಳಸಲು ಪ್ರಾಕ್ಸಿ ಪೂರೈ - msgid "HTTPS Proxy" - msgstr "HTTPS ಪ್ರಾಕ್ಸಿ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1384,33 +1451,6 @@ msgstr "HTTPS ಪ್ರಾಕ್ಸಿ" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS ಗಾಗಿ ಬಳಸಲು ಪ್ರಾಕ್ಸಿ ಪೂರೈಕೆಗಣಕವನ್ನು ಹೊಂದಿಸುತ್ತದೆ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "ನಿರ್ಬಂಧಿತ ನಿಲುಕು" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"ರಚಿಸಲಾದ ಬಗ್‌ಝಿಲ್ಲಾ ಟಿಕೆಟ್‌ಗೆ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಒದಗಿಸುವುದರಿಂದ ಕೇವಲ " --"ನಿರ್ದಿಷ್ಟ ಗುಂಪುಗಳ ಬಳಕೆದಾರರು ಮಾತ್ರ ಅದನ್ನು ನೋಡಲು ಸಾಧ್ಯವಿರುತ್ತದೆ (ಹೆಚ್ಚಿನ " --"ವಿವರಗಳಿಗಾಗಿ ಸುಧಾರಿತ ಸಿದ್ಧತೆಗಳು ಅನ್ನು ನೋಡಿ)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "ಗುಂಪುಗಳು" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"ನಿಶ್ಚಿತ ಗುಂಪುಗಳು ಮಾತ್ರ ನಿಲುಕಿಸಿಕೊಳ್ಳುವಂತೆ ನಿರ್ಬಂಧಿಸಿ <a href=\"https://" --"github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</" --"a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1450,13 +1490,13 @@ msgstr "" - "ಸೂಚಿಸಲಾಗಿದೆ, env ವೇರಿಯೇಬಲ್ ಮತ್ತು ಸಂರಚನೆಯನ್ನು ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "ಲಾಗಿನ್ ಆಗದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "ಗುಪ್ತಪದ ನೀಡದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ" -@@ -1469,10 +1509,9 @@ msgstr "%s ಎಂಬಲ್ಲಿ ಬಗ್‌ಝಿಲ್ಲಾಗೆ ಪ್ರ - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"ಮಾನ್ಯವಲ್ಲದ ಗುಪ್ತಪದ ಅಥವ ಲಾಗಿನ್. ದಯವಿಟ್ಟು ನಿಮ್ಮ Bugzilla ಲಾಗಿನ್ ಅನ್ನು ನಮೂದಿಸಿ:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1488,7 +1527,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1522,123 +1561,92 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"ಅಥವ:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"ಅಥವ:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"ಅಥವ:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"ಬಗ್‌ಝಿಲ್ಲಾಗೆ ತೊಂದರೆತನ್ನು ವರದಿ ಮಾಡುತ್ತದೆ.\n" --"\n" --"ಉಪಕರಣವು DIR ಅನ್ನು ಓದುತ್ತದೆ. ನಂತರ ಅದು ಬಗ್‌ಝಿಲ್ಲಾಗೆ ಲಾಗ್‌ ಇನ್‌ ಆಗಿ ಅದೆ \n" --"abrt_hash:HEXSTRING ಅನ್ನು ಹೊಂದಿರುವ ದೋಷವರದಿಗಾಗಿ 'ವೈಟ್‌ಬೋರ್ಡ್'ನಲ್ಲಿ " --"ಹುಡುಕುತ್ತದೆ.\n" --"\n" --"ಅಂತಹ ಯಾವುದೆ ದೋಷವರದಿ ಕಂಡುಬರದೆ ಇದ್ದಲ್ಲಿ, ಒಂದು ಹೊಸ ದೋಷ ವರದಿಯನ್ನು ರಚಿಸಲಾಗುತ್ತದೆ. " --"DIRನ\n" --"ಅಂಶಗಳನ್ನು ಅವುಗಳ ಬಗೆ ಮತ್ತು ಗಾತ್ರದ ಮೇರೆಗೆ ದೋಷದಲ್ಲಿ ದೋಷ ವರದಿಯ ಅಥವ ಲಗತ್ತಿನ \n" --"ರೂಪದಲ್ಲಿ ಶೇಖರಿಸಿ ಇರಿಸಲಾಗುತ್ತದೆ.\n" --"\n" --"ಇಲ್ಲದೆ ಹೋದಲ್ಲಿ, ಅಂತಹ ಯಾವುದಾದರೂ ದೋಷವರದಿ ಕಂಡುಬಂದರೆ ಮತ್ತು ಅದನ್ನು CLOSED " --"DUPLICATE ಎಂದು ಗುರುತುಹಾಕಲಾಗಿದ್ದಲ್ಲಿ,\n" --"ಉಪಕರಣವು ಒಂದುnon-DUPLICATE ದೋಷವರದಿಯು ಕಾಣಿಸುವವರೆಗೆ ಸರಪಳಿಯಲ್ಲಿ ಹುಡುಕುತ್ತಾ " --"ಸಾಗುತ್ತದೆ.\n" --"ಆ ದೋಷವರದಿಯಲ್ಲಿ ಒಂದು ಟಿಪ್ಪಣಿಯನ್ನು ಸೇರಿಸುತ್ತದೆ.\n" --"\n" --"ಹೊಸ ಅಥವ ಮಾರ್ಪಡಿಸಲಾದ ದೋಷವರದಿಯ URL ಅನ್ನು stdout ಗೆ ಮುದ್ರಿಸಲಾಗುತ್ತದೆ ಮತ್ತು \n" --"'reported_to' ಘಟಕಕ್ಕೆ ದಾಖಲಿಸಲಾಗುತ್ತದೆ.\n" --"\n" --"-t ಆಯ್ಕೆಯು ಬಗ್‌ಝಿಲ್ಲಾ ತಾಣದಲ್ಲಿ ಈಗಾಗಲೆ ರಚಿಸಲಾದ ದೋಷವರದಿಗೆ FILEಗಳನ್ನು ಅಪ್‌ಲೋಡ್ " --"ಮಾಡುತ್ತದೆ.\n" --"ದೋಷವರದಿ ID ಯನ್ನು -d DIR ಇಂದ ಸೂಚಿಸಲಾದ ಕೋಶದಿಂದ ಪಡೆದುಕೊಳ್ಳಲಾಗುತ್ತದೆ.\n" --"DIR ನಲ್ಲಿನ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಬಗ್‌ಝಿಲ್ಲಾಗೆ ಎಂದಿಗೂ ಸಹ ವರದಿ ಮಾಡಿರದೆ " --"ಇದ್ದಲ್ಲಿ, ಅಪ್‌ಲೋಡ್ ಮಾಡುವಿಕೆ ವಿಫಲಗೊಳ್ಳುತ್ತದೆ.\n" --"\n" --"ಆಯ್ಕೆ -tID ಎನ್ನುವುದು ಬಗ್‌ಝಿಲ್ಲಾ ತಾಣದಲ್ಲಿನ ನಿಶ್ಚಿತ ID ಅನ್ನು ಹೊಂದಿರುವ " --"ದೋಷವರದಿಗೆ FILE ಗಳನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ .\n" --"-d DIR ಅನ್ನು ಕಡೆಗಣಿಸಲಾಗಿದೆ.n\n" --"-w ಆಯ್ಕೆಯು ದೋಷವರದಿಯ CC ಪಟ್ಟಿಗೆ ಬಗ್‌ಝಿಲ್ಲಾ ಬಳಕೆದಾರನನ್ನು ಸೇರಿಸುತ್ತದೆ.\n" --"\n" --"-r ಆಯ್ಕೆಯು URL ಸ್ಥಳದಲ್ಲಿ TRACKER_NAME ಎಂದು ಪೂರ್ವನಮೂದಿತಗೊಂಡಿರುವ (ಪ್ರಿಫಿಕ್ಸ್) " --"reporter_to element ನಿಂದ\n" --"ಕೊನೆಯ url ಅನ್ನು ಹೊಂದಿಸುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ಕೇವಲ ಹೊಸ ದೋಷವರದಿಯನ್ನು ಸಲ್ಲಿಸುವಾಗ " --"ಮಾತ್ರ ಅನ್ವಯಿಸಲಾಗುತ್ತದೆ\n" --"ಪೂರ್ವನಿಯೋಜಿತ ಮೌಲ್ಯವು 'ABRT Server' ಆಗಿರುತ್ತದೆ\n" --"\n" --"ಸೂಚಿಸಲಾಗಿರದೆ ಇದ್ದಲ್ಲಿ, CONFFILE ಇದಕ್ಕೆ ಪೂರ್ವನಿಯೋಜಿತಗೊಳ್ಳುತ್ತದೆ" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "ಸಂರಚನಾ ಕಡತ (ಹಲವು ಬಾರಿ ಒದಗಿಸಬಹುದು)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "ಆರಂಭಿಕ ಟಿಪ್ಪಣಿಗಾಗಿ ಕಡತವನ್ನು ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "ನಕಲು ಪ್ರತಿಗಾಗಿ ಕಡತವನ್ನು ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILEಗಳನ್ನು ಲಗತ್ತಿಸು [ಈ ID ಯನ್ನು ಹೊಂದಿರುವ ದೋಷಕ್ಕೆ]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "ದೋಷವರದಿಯನ್ನು ರಚಿಸುವಾಗ ಬೈನರಿ ಕಡತಗಳನ್ನೂ ಸಹ ಲಗತ್ತಿಸಿ" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - "ಈ ತೊಂದರೆಯನ್ನು ಈಗಾಗಲೆ ವರದಿಮಾಡಲಾಗಿದ್ದರೂ ಸಹ ಮತ್ತೊಮ್ಮೆ ವರದಿ ಮಾಡುವಂತೆ ಒತ್ತಾಯಪಡಿಸು" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - "ಬಗ್‌ಝಿಲ್ಲಾ ಬಳಕೆದಾರನನ್ನು CC ಪಟ್ಟಿಗೆ ಸೇರಿಸಲಾಗುತ್ತಿದೆ [ಈ ID ಯನ್ನು ಹೊಂದಿರುವ " - "ಬಗ್‌ನ]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "DUPHASH ಇಂದ ಒದಗಿಸಿದ BUG_ID ಯನ್ನು ಮುದ್ರಿಸು" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "'reported_to' ಇಂದ ಹೆಚ್ಚುವರಿ URL ಗಾಗಿ ದೋಷವರದಿ ಟ್ರಾಕರಿನ ಹೆಸರು" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "ಈ ಗುಂಪು ಮಾತ್ರ ನೋಡುವತೆ ನಿರ್ಬಂಧಿಸು" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "ದೋಷನಿದಾನ" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾದಲ್ಲಿ ಇದೇ ರೀತಿಯ ತೊಂದರೆಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." - msgstr "" --"ಲಾಗಿನ್ ಅನ್ನು ಸಂರಚನೆಯಿಂದ ಒದಗಿಸಲಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು ನಿಮ್ಮ Bugzilla ಲಾಗಿನ್ ಮಾಹಿತಿಯನ್ನು " --"ನಮೂದಿಸಿ:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1647,7 +1655,7 @@ msgstr "" - "ಗುಪ್ತಪದವನ್ನು ಸಂರಚನೆಯಿಂದ ಒದಗಿಸಲಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು '%s' ಗಾಗಿನ ಲಾಗಿನ್ ಮಾಹಿತಿಯನ್ನು " - "ನಮೂದಿಸಿ:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1655,7 +1663,7 @@ msgstr "" - "ಬಗ್‌ಝಿಲ್ಲಾ ID ಅನ್ನು ಪಡೆಯಲಾಗಿಲ್ಲ ಏಕೆಂದರೆ ಈ ತೊಂದರೆಯನ್ನು ಈಗಾಗಲೆ ಬಗ್‌ಝಿಲ್ಲಾಗೆ " - "ವರದಿಮಾಡಲಾಗಿಲ್ಲ." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1664,77 +1672,99 @@ msgstr "" - "ಈ ತೊಂದರೆಯನ್ನು ಈಗಾಗಲೆ ಬಗ್‌ಝಿಲ್ಲಾ '%s' ಗೆ ವರದಿಮಾಡಲಾಗಿದ್ದು, ಇದು ಸಂರಚಿಸಲಾದ " - "ಬಗ್‌ಝಿಲ್ಲಾ '%s' ದ ಹೋಲಿಕೆಯಲ್ಲಿ ಭಿನ್ನವಾಗಿದೆ." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ '%s' ನ url ತಪ್ಪಾಗಿದೆ." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ ID '%s' ಅನ್ನು ಬಳಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "ನಿರ್ಗಮಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "ತೊಂದರೆಯ ದತ್ತಾಂಶದಿಂದ ಬಗ್‌ಝಿಲ್ಲಾ ಉತ್ಪನ್ನವನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "ನಕಲು ಪ್ರತಿಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "ಹೊಸ ದೋಷವನ್ನು ರಚಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "ಒಂದು ಹೊಸ ದೋಷವರದಿಯನ್ನು ರಚಿಸಲು ವಿಫಲಗೊಂಡಿದೆ." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "%i ಎಂಬ ದೋಷವರದಿ ಬಾಹ್ಯ URL ಅನ್ನು ಸೇರಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "%i ಎಂಬ ದೋಷವರದಿಗೆ ಲಗತ್ತನ್ನು ಸೇರಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "ದೋಷವನ್ನು ಈಗಾಗಲೆ ವರದಿ ಮಾಡಲಾಗಿದೆ: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s ಅನ್ನು CC ಪಟ್ಟಿಗೆ ಸೇರಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "%d ದೋಷಕ್ಕೆ ಹೊಸ ಟಿಪ್ಪಣಿಯನ್ನು ಸೇರಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "ಉತ್ತಮವಾದ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅನ್ನು ಲಗತ್ತಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "ದೋಷದ ಇತಿಹಾಸದಲ್ಲಿ ಕೆಲವು ಟಿಪ್ಪಣಿಯು ಕಂಡುಬಂದಿದೆ, ಹೊಸತ್ಯಾವುದನ್ನೂ ಸಹ " - "ಸೇರಿಸಲಾಗುತ್ತಿಲ್ಲ" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "ಸ್ಥಿತಿ: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1769,7 +1799,7 @@ msgstr "" - "Parameter can be overridden via $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "ಸಂರಚನಾ ಕಡತ" - -@@ -1801,12 +1831,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ಒಂದು ಇಮೈಲ್ ಅನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "ಇಮೈಲನ್ನು ಇಲ್ಲಿಗೆ ಕಳುಹಿಸಲಾಗಿದೆ: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1820,11 +1850,11 @@ msgstr "" - "\n" - "If not specified, CONFFILE defaults to " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "ಸಂರಚನಾ ಕಡತ" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "ಕೇವಲ ಸೂಚಿಸು (ವರದಿಯನ್ನು ಕಳುಹಿಸಲಾಗಿದೆ ಎಂದು ಗುರುತುಹಾಕಬೇಡ)" - -@@ -1861,34 +1891,34 @@ msgstr "" - "ಬರೆಯುವ ಸಲುವಾಗಿ '%s' ಅನ್ನು ತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು ಬೇರೊಂದು ಕಡತವನ್ನು " - "ಆರಿಸಿ:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "ವರದಿಯನ್ನು %s ಗೆ ಸೇರಿಸಲಾಗಿದೆ" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "ವರದಿಯನ್ನು %s ಗೆ ಶೇಖರಿಸಲಾಗಿದೆ" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "ಪೂರೈಕೆಗಣಕವು ಒಂದು ದೋಷದೊಂದಿಗೆ ಪ್ರತಿಕ್ರಿಯಿಸಿದೆ: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "ಆದರೂ ಸಹ ನೀವು RHTSupport ಟಿಕೆಟ್ ಅನ್ನು ರಚಿಸಲು ಬಯಸುವಿರಾ?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1897,79 +1927,83 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILEಗಳನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡು [ಈ ID ಯನ್ನು ಹೊಂದಿರುವ ಪ್ರಕರಣಕ್ಕೆ]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "ಲಾಗಿನ್ ಅನ್ನು ಸಂರಚನೆಯಿಂದ ಒದಗಿಸಲಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು ನಿಮ್ಮ RHTS ಲಾಗಿನ್ ಮಾಹಿತಿಯನ್ನು " - "ನಮೂದಿಸಿ:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' ಅನ್ನು '%s' ಎಂಬ ಪ್ರಕರಣಕ್ಕೆ ಲಗತ್ತಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "ಇಲ್ಲಿ ಒಂದು ತಾತ್ಕಾಲಿಕ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "ದತ್ತಾಂಶವನ್ನು ಸಂಕುಚನಗೊಳಿಸಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "ಇಲ್ಲಿ ಒಂದು ತಾತ್ಕಾಲಿಕ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "ಇಲ್ಲಿ ಒಂದು ತಾತ್ಕಾಲಿಕ ಕಡತವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "ಸುಳಿವಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "ಹೊಸ ಪ್ರಕರಣವನ್ನು ರಚಿಸಲಾಗುತ್ತಿದೆ" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "ತೊಂದರೆಯ ದತ್ತಾಂಶದಿಂದ RH ಸಪೋರ್ಟ್ ಉತ್ಪನ್ನವನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "'%s' ಪ್ರಕರಣಕ್ಕೆ ಹೊಸ ಟಿಪ್ಪಣಿಯನ್ನು ಸೇರಿಸಲಾಗುತ್ತಿದೆ" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "'%s' ಪ್ರಕರಣಕ್ಕೆ ತೊಂದರೆಯ ಪ್ರಕರಣವನ್ನು ಲಗತ್ತಿಸಲಾಗುತ್ತಿದೆ" -@@ -1982,45 +2016,49 @@ msgstr "ಸೂಕ್ತವಾಗಿರಬಹುದಾದ ದಸ್ತಾವೇ - msgid "Updates which possibly help: " - msgstr "ನೆರವಾಗಬಹುದಾದ ಅಪ್‌ಡೇಟ್‌ಗಳು: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "URL ಇಲ್ಲದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "ಆರ್ಕೈವ್ ಅನ್ನು ರಚಿಸಲಾಗಿದೆ: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"ತೊಂದರೆಯ ಕೋಶ DIR ನ ಸಂಕುಚನಗೊಳಿಸಲಾದ ಟಾರ್ಬಾಲ್ ಅನ್ನು URL ಗೆ ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ.\n" --"URL ಅನ್ನು ಒದಗಿಸಲಾಗಿರದೆ ಇದ್ದಲ್ಲಿ, ಇದರಲ್ಲಿ ಟಾರ್ಬಾಲ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "ಅಪ್‌ಲೋಡ್ ಮಾಡಬೇಕಿರುವ ಮೂಲ URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -2037,7 +2075,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2080,48 +2118,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2129,47 +2167,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2205,39 +2243,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2403,6 +2444,22 @@ msgstr "FTP ಪ್ರಾಕ್ಸಿ" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP ಗಾಗಿ ಬಳಸಲು ಪ್ರಾಕ್ಸಿ ಪೂರೈಕೆಗಣಕವನ್ನು ಹೊಂದಿಸುತ್ತದೆ" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2470,7 +2527,7 @@ msgstr "%i ದೋಷವು CLOSED ಆಗಿದೆ, ಆದರೆ ಇದು RESOLU - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "%i ದೋಷವನ್ನು DUPLICATE ಎಂದು CLOSED ಮಾಡಲಾಗಿದೆ, ಆದರೆ ಇದು DUP_ID ಹೊಂದಿಲ್ಲ" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2480,17 +2537,17 @@ msgstr "" - "ದಯವಿಟ್ಟು ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ https://github.com/abrt/abrt/wiki/FAQ#creating-" - "private-bugzilla-tickets ಅನ್ನು ನೋಡಿ" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "ಹೊಸ ದೋಷ id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "%d ನ ಮೂಲ ದೋಷವನ್ನು ಬಗ್‌ಝಿಲ್ಲಾದಿಂದ ಪತ್ತೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) ಮರಳಿಸಿದ ಮೌಲ್ಯವು 'bugs' ಅಂಶವನ್ನು ಹೊಂದಿಲ್ಲ" - -@@ -2683,40 +2740,40 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "ಪೂರೈಕೆಗಣಕದ URL ಅನ್ನು ಸೂಚಿಸಿ" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "ureport ಪೂರೈಕೆಗಣಕಕ್ಕೆ ಸುರಕ್ಷಿತ ಸಂಪರ್ಕವನ್ನು ಅನುಮತಿಸು" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "ಕ್ಲೈಂಟ್ ದೃಢೀಕರಣವನ್ನು ಬಳಸು" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "ಲಗತ್ತಿಸಬೇಕಿರುವ uReport ನ bthash (-A ನೊಂದಿಗೆ ತಿಕ್ಕಾಟವಾಗುತ್ತದೆ)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "reported_to ಇಂದ bthash ಗೆ ಲಗತ್ತಿಸಿ (-a ನೊಂದಿಗೆ ತಿಕ್ಕಾಟವಾಗುತ್ತದೆ)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - "ಸಂಪರ್ಕಸಿಬೇಕಿರುವ ವಿ-ಅಂಚೆ ವಿಳಾಸ (-a|-A ಅಗತ್ಯವಿದೆ, -E ನೊಂದಿಗೆ ತಿಕ್ಕಾಟವಾಗುತ್ತದೆ)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2724,30 +2781,54 @@ msgstr "" - "ಪರಿಸರ ಅಥವ ಸಂರಚನೆ ಕಡತದಿಂದ ಸಂಪರ್ಕಸಿಬೇಕಿರುವ ವಿ-ಅಂಚೆ ವಿಳಾಸ (-a|-A ಅಗತ್ಯವಿದೆ, -E " - "ನೊಂದಿಗೆ ತಿಕ್ಕಾಟವಾಗುತ್ತದೆ)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - "RHBZ ದೋಷವರದಿಯನ್ನು ಲಗತ್ತಿಸಿ (-a|-A ಅಗತ್ಯವಿದೆ, -B ನೊಂದಿಗೆ ತಿಕ್ಕಾಟವಾಗುತ್ತದೆ)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "reported_to ಇಂದ ಕಡೆಯ RHBZ ದೋಷವರದಿಯನ್ನು ಲಗತ್ತಿಸಿ (-a|-A ಅಗತ್ಯವಿದೆ, -b ನೊಂದಿಗೆ " - "ತಿಕ್ಕಾಟವಾಗುತ್ತದೆ)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2756,33 +2837,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "ಈ ತೊಂದರೆಯು ನಿಯೋಜಿತಗೊಂಡ ಒಂದು uReport ಅನ್ನು ಹೊಂದಿಲ್ಲ." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "ಈ ತೊಂದರೆಯನ್ನು ಈಗಾಗಲೆ ಬಗ್‌ಝಿಲ್ಲಾಗೆ ವರದಿಮಾಡಲಾಗಿಲ್ಲ." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ URL '%s' ನಲ್ಲಿ ದೋಷದ ID ಕಂಡುಬಂದಿಲ್ಲ" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "ಬಗ್‌ಝಿಲ್ಲಾ URL '%s' ಇಂದ ದೋಷದ ID ಅನ್ನು ಪಾರ್ಸ್ ಮಾಡಲಾಗಿಲ್ಲ" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2790,19 +2881,19 @@ msgstr "" - "ಪರಿಸರ ವೇರಿಯಬಲ್ 'uReport_ContactEmail' ಆಗಲಿ ಅಥವ ಸಂರಚನಾ ಆಯ್ಕೆ 'ContactEmail' " - "ಅನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "ನೀವು ಲಗತ್ತಿಸಲು uReport ನ bthash ಅನ್ನು ಸೂಚಿಸಬೇಕಾಗುತ್ತದೆ." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "ಒಂದು ಖಾಲಿ uReport ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿಲ್ಲ" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "ಈ ತೊಂದರೆಯನ್ನು ಈಗಾಗಲೆ ವರದಿಮಾಡಲಾಗಿದೆ." - -diff --git a/po/ko.po b/po/ko.po -index e440c1f..67c8e8a 100644 ---- a/po/ko.po -+++ b/po/ko.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/ko/)\n" - "Language: ko\n" - "Plural-Forms: nplurals=1; plural=0;\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -174,46 +174,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0}에서 cpio 추출 중 " - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}'에 작성할 수 없음: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "패키지 '{0}'을(를) 추출할 수 없습니다 " - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{1}에서 만들어진 {0}에서 파일을 캐시 중 " - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}'에서 파일을 추출할 수 없음 " -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}'을(를) 제거할 수 없음: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "{2} 다운로드 중 ({1}중 {0}): {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -221,118 +218,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "리포지터리에서 필요한 패키지를 검색 중 " - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} 디버그 정보 파일에 해당하는 패키지를 찾을 수 없습니다 " - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "다운로드할 패키지: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "{0:.2f}Mb 다운로드 중, 설치 크기: {1:.2f}Mb. 계속 진행하시겠습니까? " - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "사용자에 의해 다운로드가 취소되있습니다 " - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "패키지 {0} 다운로드에 실패했습니다 " - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "압축 풀기에 실패했습니다, 다운로드를 취소합니다..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} 제거 중 " - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum 초기화 오류 (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0}을 설정할 수 없습니다: {1}, 비활성화 중 " - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "메타데이터를 검색하는 동안 오류가 발생했습니다: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "파일 목록을 가져오는 도중 오류가 발생했습니다: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -381,7 +385,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -407,7 +411,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -486,60 +490,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "대체 GUI 파일 " - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "쓰기 가능한 디렉토리가 필요하지만 '%s'는 쓰기 불가능합니다. '%s'로 이동하여 이동한 데이터에서 작동해 보십시오. " - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "텍스트 파일 보기/편집 " - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(보기/편집하려면 여기를 클릭) " - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(바이너리 파일, %llu 바이트) " - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(설명 없음) " - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu 바이트, %u 파일 " - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -548,7 +552,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -556,7 +560,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -568,174 +572,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "이벤트 '%s'에 대한 처리가 정의되지 않음 " - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s'은(는) 정상적인 파일이 아님 " - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "파일을 파일 자체에 복사하려고 합니다 " - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s'을(를) 복사할 수 없습니다: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "항목 '%s'이 이미 존재하고 있기 때문에 변경할 수 없습니다 " - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "포함 " - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "이름" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "값 " - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "문제 설명 " - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "추가 정보 제공 " - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "데이터 검토 " - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "보고할 데이터 확인 " - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "상세 정보" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -782,26 +767,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -810,7 +775,7 @@ msgstr "" - "다음 화면에서는 어떻게 문제가 발생했는지를 설명하라는 요청이 나타납니다. 필요한 경우 문제 분석 방법을 선택하고 수집한 데이터를 확인한 " - "후 문제를 보고할 위치를 선택합니다. '앞으로'를 클릭하여 계속 진행합니다. " - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -819,41 +784,41 @@ msgstr "" - "이 문제가 어떻게 발생했는지 단계별로 설명합니다. 재현 방법을 설명합니다. 문제 진단에 도움이 될 추가 주석이 있습니까? 있다면 영어로 " - "설명해 주십시오. " - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "처리하기 전 방법란을 작성하셔야 합니다... " - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "귀하의 의견은 비공개되지 않습니다. 이는 공개되어 볼 수 있는 문제 보고에 포함됩니다. " - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "이 문제의 원인을 알 수 없습니다. " - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "크기: " - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "파일 첨부 " - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "데이터를 검색했습니다. 데이터 전송에 동의합니다." - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -862,19 +827,19 @@ msgstr "" - "원격 서버에 보고하는 경우, 모든 개인 데이터 (사용자 이름과 암호 등)가 삭제되었는지 확인합니다. 백트레이스, 명령행, 환경 변수 등은 " - "검사해야 하는 일반적 항목입니다. " - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "로그 보기 " - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "문제 보고가 완료되었습니다. 이제 이 창을 닫으실 수 있습니다. " - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -883,16 +848,15 @@ msgstr "" - "다른 장소에 문제를 보고하고자 할 경우 추가 정보를 수집하거나 보다 상세하게 문제를 설명하여 보고 절차를 반복 실행한 후 '앞으로'를 " - "누릅니다. " - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -918,172 +882,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "업로드됨: %llu 중 %llu 킬로바이트 " - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s을(를) %s에 전송 중 " -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s을(를) %s에 성공적으로 전송 " -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "필요한 값 누락 " - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "잘못된 utf8 문자 '%c' " - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "잘못된 번호 '%s' " - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "잘못된 부울 값 '%s' " - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "지원되지 않는 옵션 유형 " - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "백트레이스가 불완전합니다. 재현을 위해 올바른 단계를 제공했는지 확인하십시오. " - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "백트레이스가 비활성화되었기 때문에 보고가 비활성화되었습니다. " - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1114,21 +1144,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1211,49 +1254,69 @@ msgid "Bugzilla account password" - msgstr "Bugzilla 계정 암호 " - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL " - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla 서버 주소 " - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL 확인 " - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL 키 유효성 확인 " - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1262,8 +1325,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1272,8 +1335,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1282,8 +1345,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1292,27 +1355,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1350,13 +1392,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1371,7 +1413,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1386,7 +1428,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1421,157 +1463,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "설정 파일 (여러번 주어질 수 있음) " - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILE 추가 [이 ID를 갖는 버그에] " - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "버그 생성 시 바이너리 파일도 첨부합니다 " - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "이 문제가 이미 보고되어 있는 경우에도 강제로 보고합니다 " - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "로그 아웃 " - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "중복 확인 중 " - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "새 버그 생성 중 " - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "버그 %i에 첨부 파일을 추가합니다 " - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "이미 버그가 보고되었음: %i " - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "버그 %d에 새로운 코멘트 추가 " - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "더 적당한 백트레이스를 첨부 중 " - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "버그 기록에 동일한 주석이 발견된 경우 새 주석을 추가하지 않습니다 " - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "상태: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1606,7 +1689,7 @@ msgstr "" - "매개 변수는 $KerneloopsReporter_SubmitURL을 통해 덮어쓰기 될 수 있습니다. " - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "설정 파일 " - -@@ -1636,12 +1719,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "이메일 전송 중... " - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "이메일이 전송되었습니다: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1655,11 +1738,11 @@ msgstr "" - "\n" - "지정하지 않을 경우, CONFFILE에 따라 다음과 같이 기본 설정됩니다. " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "설정 파일 " - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1693,34 +1776,34 @@ msgstr "사용자가 취소했습니다. " - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "쓰기를 위한 '%s'을(를) 열 수 없습니다. 다른 파일을 선택하십시오: " - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "보고서는 %s에 첨부되어 있음 " - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "보고서는 %s에 저장되어 있음 " - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "RHTSupport 티켓을 정말로 생성하시겠습니까? " - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1729,77 +1812,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILE 업로드 [이 ID를 갖는 사례에] " - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s'을(를) 사례 '%s'에 추가 중 " - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "데이터 압축 중 " - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1812,41 +1899,49 @@ msgstr "관련 가능성이 있는 문서: " - msgid "Updates which possibly help: " - msgstr "도움이 될 수 있는 업데이트: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "아카이브가 생성됨: '%s' " - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "업로드할 기본 URL " - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1863,7 +1958,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1906,48 +2001,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1955,47 +2050,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2031,39 +2126,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org " -@@ -2225,6 +2323,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2290,24 +2404,24 @@ msgstr "버그 %i이(가) 종료 (CLOSED)되었지만 해결 방법 (RESOLUTION) - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Bug %i이(가) 중복 (DUPLICATE)으로 종료 (CLOSED)되었지만 DUP_ID가 없습니다. " - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "새 버그 id: %i " - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla는 버그 %d의 부모 버그를 찾을 수 없습니다 " - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2500,65 +2614,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2567,51 +2705,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/lv.po b/po/lv.po -index c77acbd..49c3fa1 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: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -172,46 +172,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -219,118 +216,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Pakotnes, kuras lejuplādēt: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -379,7 +383,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -405,7 +409,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -484,60 +488,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(nav apraksta)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -546,7 +550,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -554,7 +558,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -566,174 +570,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Apstrādāšana neizdevusies." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Apstrādāšana pabeigta." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Apstrādā..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Iekļaut" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nosaukums" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Vērtība" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Problēmas apraksts" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Apstrādāšana pabeigta" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -780,109 +765,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Pievienot datni" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Apstrādāšana vēl netika sākta" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -908,172 +872,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "j" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1104,21 +1134,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1199,49 +1242,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1250,8 +1313,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1260,8 +1323,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1270,8 +1333,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1280,27 +1343,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1329,13 +1371,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1350,7 +1392,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1365,7 +1407,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1400,157 +1442,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1575,7 +1658,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Konfigurācijas datne" - -@@ -1605,12 +1688,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Sūta e-pastu..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "E-pasts tika nosūtīts: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1619,11 +1702,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1655,34 +1738,34 @@ msgstr "Lietotāja atcelts." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1691,77 +1774,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1774,41 +1861,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1825,7 +1920,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1868,48 +1963,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1917,47 +2012,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1993,39 +2088,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2187,6 +2285,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2252,24 +2366,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2462,65 +2576,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2529,51 +2667,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/ml.po b/po/ml.po -index 98fc2e4..bc3c395 100644 ---- a/po/ml.po -+++ b/po/ml.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/ml/)\n" - "Language: ml\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -179,48 +179,45 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0}-ല്‍ നിന്നും cpio ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}'-ലേക്കു് സൂക്ഷിയ്ക്കുവാന്‍ സാധ്യമല്ല: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "പാക്കേജ് '{0}' ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - "{0}-ല്‍ നിന്നുള്ള ഫയലുകള്‍ കാഷ് ചെയ്യുന്നു, {1}-ല്‍ നിന്നും " - "ലഭ്യമായിരിയ്ക്കുന്നു" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}'-ല്‍ നിന്നും ഫയലുകള്‍ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' നീക്കം ചെയ്യുവാന്‍ സാധ്യമല്ല: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "({0} / {1}) ഡൌണ്‍ലോഡ് ചെയ്യുന്നു {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -228,121 +225,128 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "റിപ്പോസിറ്ററികളില്‍ ആവശ്യമുള്ള പാക്കേജുകള്‍ക്കായി തെരയുന്നു" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - "{0} debuginfo ഫയലുകള്‍ക്കുള്ള പാക്കേജുകള്‍ കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "ഡൌണ്‍ലോഡ് ചെയ്യുവാനുള്ള പാക്കേജുകള്‍: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "{0:.2f}Mb ഡൌണ്‍ലോഡ് ചെയ്യുന്നു, ഇന്‍സ്റ്റോള്‍ ചെയ്ത വ്യാപ്തി: {1:.2f}Mb. " - "തുടരണമോ?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "ഉപയോക്താവു് ഡൌണ്‍ലോഡ് ചെയ്യുന്നതു് റദ്ദാക്കിയിരിയ്ക്കുന്നു" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "പാക്കേജ് {0} ഡൌണ്‍ലോഡ് ചെയ്യുന്നതില്‍ പരാജയം" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "അണ്‍പാക്കിങ് പരാജയപ്പെട്ടു, ഡൌണ്‍ലോഡ് നിര്‍ത്തുന്നു..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} നീക്കം ചെയ്യുന്നു" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum (YumBase.doConfigSetup) ആരംഭിയ്ക്കുന്നതില്‍ പിശക്: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "'{0!s}': {1!s} റിപ്പോസിറ്ററി നിര്‍വീര്യമാക്കാന്‍ കഴിയില്ല" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0}: {1} സജ്ജീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല, പ്രവര്‍ത്തന രഹിതമാക്കുന്നു" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "മെറ്റാഡേറ്റാ ലഭ്യമാക്കുന്നതില്‍ പിശക്: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "ഫയല്‍ലിസ്റ്റുകള്‍ ലഭ്യമാക്കുന്നതില്‍ പിശക്: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -391,7 +395,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -419,7 +423,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -498,7 +502,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "മറ്റൊരു ജിയുഐ ഫയല്‍" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -507,53 +511,53 @@ msgstr "" - "സൂക്ഷിയ്ക്കുവാന്‍ സാധ്യമാകുന്ന ഡയറക്ടറി ആവശ്യമുണ്ടു്, പക്ഷേ '%s' റൈറ്റബിള്‍ " - "ആകുന്നു. '%s'-ലേക്കു് നീക്കി, നീക്കം ചെയ്ത ഡേറ്റയില്‍ പ്രവര്‍ത്തിയ്ക്കണമോ?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "ഒരു ടെക്സ്റ്റ് ഫയല്‍ കാണുക/ചിട്ടപ്പെടുത്തുക" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr " (%s ആവശ്യമാണ്)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(വേണ്ടതില്ല, വിവരം നേരത്തേ തന്നെ നിലവിലുണ്ട്: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(കാണുന്നതിനു്/ചിട്ടപ്പെടുത്തുന്നതിനായി ഇവിടെ ക്ലിക്ക് ചെയ്യുക)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(ബൈനറി ഫയല്‍, %llu ബൈറ്റുകള്‍)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(വിവരണം ലഭ്യമല്ല)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu ബൈറ്റുകള്‍, %u ഫയലുകള്‍" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -562,7 +566,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -570,7 +574,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -582,177 +586,158 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "സംസ്കരണം പരാജയപ്പെട്ടു." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "സംസ്കരണം പൂര്‍ത്തിയായി." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "സംസ്കരണം പൂര്‍ത്തിയായി, അടുത്ത ഘട്ടത്തിലേക്ക് കടക്കാം." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "ഇവന്റ് '%s'-നു് ഒരു പ്രവര്‍ത്തനവും നിഷ്കര്‍ഷിച്ചിട്ടില്ല" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "സംസ്കരണം തടസ്സപ്പെട്ടു: ഫയലുകള്‍ ചേര്‍ക്കാവുന്ന -എഴുതാവുന്ന- ഡയറക്‍ടറി " - "ഇല്ലാതെ തുടരാനാവില്ല." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "സംസ്കരിക്കുന്നു..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' ഒരു സാധാരണ ഫയലല്ല" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - "ഒരു ഫയലിനെ അതിലേക്കു് തന്നെ പകര്‍ത്തുവാനാണു് നിങ്ങള്‍ ശ്രമിയ്ക്കുന്നതു്" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' പകര്‍ത്തുവാന്‍ സാധ്യമല്ല: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "'%s' നിലവിലുണ്ടു്, മാറ്റം വരുത്തുവാന്‍ സാധ്യമാകുന്നു" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "ഉള്‍പ്പെടുത്തേണ്ടതു്" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "പേരു്" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "മൂല്ല്യം" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "പ്രശ്ന വിവരണം" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ നല്‍കുക" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "ഡേറ്റാ നിരീക്ഷിയ്ക്കുക" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "രേഖപ്പെടുത്തുന്നതിനു് ഡേറ്റാ ഉറപ്പാക്കുക" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "സംസ്കരണം" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "സംസ്കരണം കഴിഞ്ഞു" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "വിശദാംശങ്ങള്‍" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -804,26 +789,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -833,7 +798,7 @@ msgstr "" - "പരിശോധിയ്ക്കുക, പ്രശ്നം എവിടെ രേഖപ്പെടുത്തണം എന്നിങ്ങനെയുള്ള ചോദ്യങ്ങള്‍ " - "ഇനിയുള്ള സ്ക്രീനുകളില്‍ കാണാം. തുടരുന്നതിനായി 'മുമ്പോട്ട്' ക്ലിക്ക് ചെയ്യുക." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -843,11 +808,11 @@ msgstr "" - "പ്രശ്നം നിരീക്ഷിയ്ക്കുന്നതിനുള്ള കൂടുതല്‍ വിവരങ്ങള്‍ ലഭ്യമാണോ? കഴിവതും " - "ഇംഗ്ലീഷ് ഉപയോഗിയ്ക്കുവാന്‍ ശ്രമിയ്ക്കുക." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "തുടരുന്നതിനു് മുമ്പ്, എങ്ങനെ എന്നുള്ളതു് പൂരിപ്പിയ്ക്കേണ്ടതുണ്ടു്..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -855,31 +820,31 @@ msgstr "" - "നിങ്ങളുടെ അഭിപ്രായങ്ങള്‍ സ്വകാര്യമല്ല. എല്ലാര്‍ക്കും കാണുവാന്‍ " - "സാധിയ്ക്കുന്ന റിപ്പോര്‍ട്ടുകളിലേക്കു് നിങ്ങള്‍ക്കു് ഇവ ഉള്‍പ്പെടുത്താം." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "ഇതെങ്ങനെ സംഭവിച്ചു എന്നറിയില്ല" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "വ്യാപ്തി:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ഒരു ഫയല്‍ കൂട്ടിച്ചേര്‍ക്കുക" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "ഡേറ്റാ നിരീക്ഷിച്ചു്, സമര്‍പ്പിയ്ക്കുവാന്‍ _സമ്മതം" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -890,19 +855,19 @@ msgstr "" - "രഹസ്യവാക്കുകളും). ബാക്ക്ട്രെയിസ്, കമാന്‍ഡ് ലൈന്‍, എന്‍വയണ്മെന്റ് " - "വേരിയബിളുകള്‍ എന്നിവ പരിശോധനയ്ക്കു് ആവശ്യമാകുന്നു." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "സംസ്കരണം ഇതുവരേയും തുടങ്ങിയില്ല" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "ലോഗ് കാണിയ്ക്കുക" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "രേഖപ്പടുത്തിക്കഴിഞ്ഞു. ഈ ജാലകം അടയ്ക്കാം." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -912,16 +877,15 @@ msgstr "" - "വിവരങ്ങള്‍ ശേഖരിയ്ക്കുക അല്ലെങ്കില്‍, കുറച്ചു് കൂടി മെച്ചപ്പെട്ട വിവരണം " - "നല്‍കി വീണ്ടും രേഖപ്പെടുത്തുക, എന്നിട്ടു് 'മുമ്പോട്ട്' അമര്‍ത്തുക." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -947,89 +911,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "നിര്‍ബന്ധമായും വേണ്ട '%s' കാണാനില്ല" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "നിര്‍ബന്ധമായും വേണ്ട '%s' കാണാനില്ല" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "അപ്ലോഡ് ചെയ്തതു്: %llu/%llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s, %s-ലേക്കു് അയയ്ക്കുന്നു" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s വിജയകരമായി %s-ലേക്കു് അയച്ചിരിയ്ക്കുന്നു" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "ലഭ്യമല്ലാത്ത നിര്‍ബന്ധമായ മൂല്ല്യം" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "തെറ്റായ utf8 അക്ഷരം '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "തെറ്റായ നംബര്‍ '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "തെറ്റായ ബൂളിയന്‍ മൂല്ല്യം '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "പിന്തുണ ലഭ്യമല്ലാത്ത ഐച്ഛിക രീതി" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1037,86 +1042,111 @@ msgstr "" - "ബാക്ക്ട്രെയിസ് പൂര്‍ണ്ണമല്ല, തയ്യാറാക്കുന്നതിനുള്ള ഉത്തമ രീതികള്‍ ദയവായി " - "നല്‍കുക." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - "ബാക്ക്ട്രെയിസ് ഉപയോഗപ്രദമല്ല, അതിനാല്‍ റിപോര്‍ട്ട് ചെയ്യുന്നതു് " - "നിര്‍ജീവമാക്കിയിരിക്കുന്നു." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1147,21 +1177,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1244,49 +1287,69 @@ msgid "Bugzilla account password" - msgstr "ബഗ്സിലാ അക്കൌണ്ടിന്റെ രഹസ്യവാക്ക്" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "ബഗ്സിലാ യുആര്‍എല്‍" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "ബഗ്സിലാ സര്‍വറിന്റെ വിലാസം" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "എസ്എസ്എല്‍ ഉറപ്പാക്കുക" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "എസ്എസ്എല്‍ കീയുടെ സാധുത പരിശോധിയ്ക്കുക" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1295,8 +1358,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1305,8 +1368,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1315,8 +1378,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1325,27 +1388,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1387,13 +1429,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1408,7 +1450,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1423,7 +1465,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1458,161 +1500,202 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "ക്രമീകരണ ഫയല്‍ (പല തവണ വേണമെങ്കില്‍ നല്‍കാം)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "ഫയലുകള്‍ കൂട്ടി ചേര്‍ക്കുക [ഈ ഐഡിയുള്ള ബഗിലേക്കു്]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "ബഗ് തയ്യാറാക്കുമ്പോള്‍, ബൈനറി ഫയലുകളും കൂട്ടിചേര്‍ക്കൂ" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - "ഈ പ്രശ്നം മുമ്പു് രേഖപ്പെടുത്തിയിട്ടുണ്ടെങ്കിലും നിര്‍ബന്ധമായി വീണ്ടും " - "രേഖപ്പെടുത്തുക" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "പുറത്തു് കടക്കുന്നു" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "ആവര്‍ത്തനങ്ങള്‍ക്കായി തെരയുന്നു" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "ഒരു പുതിയ ബഗ് തയ്യാറാക്കുന്നു" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "ബഗ് %i-ലേക്കു് അറ്റാച്ച്മെന്റുകള്‍ ചേര്‍ക്കുന്നു" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "ബഗ് രേഖപ്പെടുത്തിയിട്ടുണ്ടു്: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "ബഗ് %d-ലേക്കു് പുതിയ അഭിപ്രായം ചേര്‍ക്കുന്നു" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "മെച്ചപ്പെട്ട ബാക്ക്ട്രെയിസ് കൂട്ടിച്ചേര്‍ക്കുന്നു" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "ബഗ് നാള്‍വഴിയില്‍ അതേ അഭിപ്രായം കണ്ടിരിയ്ക്കുന്നു, പുതിയൊരെണ്ണം " - "ചേര്‍ക്കുന്നില്ല" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "അവസ്ഥ: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1649,7 +1732,7 @@ msgstr "" - "സാധിയ്ക്കുന്നു." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "ക്രമീകരണ ഫയല്‍" - -@@ -1679,12 +1762,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ഒരു ഈമെയില്‍ അയയ്ക്കുന്നു..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "ഈമെയില്‍ ഇങ്ങോട്ട് അയയ്ക്കുക: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1698,11 +1781,11 @@ msgstr "" - "\n" - "നിഷ്കര്‍ഷിച്ചിട്ടില്ലെങ്കില്‍, CONFFILE-നു് സ്വതവേയുള്ള മൂല്ല്യം" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "ക്രമീകരണ ഫയല്‍" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "അറിയിപ്പു മാത്രം (റിപ്പോര്‍ട്ട് അയച്ചതായി അടയാളപ്പെടുത്തേണ്ട)" - -@@ -1739,34 +1822,34 @@ msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - "'%s'-ലേക്കു് എഴുതുവാന്‍ സാധ്യമല്ല. ദയവായി മറ്റൊരു ഫയല്‍ തെരഞ്ഞെടുക്കുക:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "റിപ്പോര്‍ട്ട് %s-ലേക്കു് കൂട്ടിച്ചേര്‍ത്തിരിയ്ക്കുന്നു" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "റിപ്പോര്‍ട്ട് %s-ലേക്കു് സൂക്ഷിച്ചിരിയ്ക്കുന്നു" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "ഇനിയും നിങ്ങള്‍ക്കു് ഒരു RHTSupport ടിക്കറ്റ് തയ്യാറാക്കണമോ?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1775,77 +1858,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "ഫയലുകള്‍ അപ്ലോഡ് ചെയ്യുക [ID എന്ന കേസിലേക്കു്]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s', '%s' എന്ന കേസിലേക്കു് കൂട്ടിചേര്‍ക്കുന്നു" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "ഡേറ്റാ കംപ്രസ്സ് ചെയ്യുന്നു" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1858,41 +1945,49 @@ msgstr "ഉപയോഗപ്രദമായ വിവരണക്കുറി - msgid "Updates which possibly help: " - msgstr "സഹായകമാകുന്ന പരിഷ്കരണങ്ങള്‍: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "ആര്‍ക്കൈവ് തയ്യാറാക്കിയിരിയ്ക്കുന്നു: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "അപ്ലോഡ് ചെയ്യുവാനുള്ള ബെയിസ് യുആര്‍എല്‍" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1909,7 +2004,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1952,48 +2047,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2001,47 +2096,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2077,39 +2172,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2275,6 +2373,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2340,24 +2454,24 @@ msgstr "ബഗ് %i CLOSED ആയി, പക്ഷേ RESOLUTION ഇല്ല" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "DUPLICATE ആയി ബഗ് %i CLOSED ആക്കി. പക്ഷേ, ഇതിനു് DUP_ID ലഭ്യമല്ല" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "പുതിയ ബഗ് ഐഡി: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "ബഗ് %d-ന്റെ പേരന്റ് ലഭ്യമാക്കുവാന്‍ ബഗ്സിലയ്ക്കു് സാധ്യമായില്ല" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2550,65 +2664,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2617,51 +2755,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/mr.po b/po/mr.po -index e7f784d..2af7fbe 100644 ---- a/po/mr.po -+++ b/po/mr.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/mr/)\n" - "Language: mr\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -182,46 +182,43 @@ msgstr "चालवण्याकरिता घटना नीवडा: " - msgid "Select a workflow to run: " - msgstr "चालवण्याजोगी कार्यपद्धत नीवडाे: " - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0} पासून cpio प्राप्त करत आहे" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}': {1} करीता लिहणे अशक्य" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "संकुल '{0}' प्राप्त करणे अशक्य" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{1} पासून निर्मीत {0} पासून फाइल्स् कॅश करत आहे" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' पासून फाइल्स्ची प्राप्ति अशक्य" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}': {1} काढून टाकणे अशक्य" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "डाउनलोड करत आहे ({0}, {1} पैकी) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -229,40 +226,40 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "रेपॉजिटरिमध्ये आवश्यक संकुलांची तपासणी करत आहे" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo फाइल्स् करीता संकुल आढळले नाही" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "डाउनोडकरण्याजोगी संकुले: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "{0:.2f}Mb प्रतिष्ठापीत करत आहे, प्रतिष्ठापीत आकार: {1:.2f}Mb. पुढे जायचे?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "वापरकर्तातर्फे डाऊनलोड रद्द केले" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -270,7 +267,7 @@ msgstr "" - "सावधानता: tmp डिरेक्ट्री '{0}' ({1:.2f}Mb उर्वरित) मध्ये अतिरिक्त मोकळी जागा " - "उपलब्ध नाही. पुढे जायचे?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -279,38 +276,45 @@ msgstr "" - "सावधानता: cache डिरेक्ट्री '{0}' ({1:.2f}Mb उर्वरित) मध्ये अतिरिक्त मोकळी " - "जागा उपलब्ध नाही. पुढे जायचे?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "संकुल {0} डाउनलोड करणे अपयशी" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "अनपॅकिंग अपयशी, डाऊनलोड रद्द करत आहे..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} काढून टाकत आहे" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -318,36 +322,36 @@ msgstr "" - "अडचण '{0!s}' आढळली, मिरर: '{1!s}' पासून डाउनलोड करतेवेळी. पुढील वापरून पहात " - "आहे" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum (YumBase.doConfigSetup): '{0!s}' सुरू करतेवेळी त्रुटी आढळली" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "त्रुटी: make cachedir अशक्य, बाहेर पडत आहे" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "रेपॉजिटरि '{0!s}': {1!s} बंद करणे अशक्य" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "async डाउनोलड बंद करणे अशक्य, आउटपुटमध्ये आर्टिफॅक्ट्स असू शकतील!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0}: {1} निश्चित करणे अशक्य, बंद करत आहे" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "मेटाडाटा पुनःप्राप्तिवेळी त्रुटी: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "फाइलसूची पुनःप्राप्तिवेळी त्रुटी: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "फाइल '{0}': {1} चे प्रत बनवणे अशक्य" -@@ -396,7 +400,7 @@ msgstr "घटना" - msgid "C_onfigure" - msgstr "संरचना (_o)" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "बंद करा (_C)" - -@@ -422,7 +426,7 @@ msgstr "गोपणीय सर्व्हिस उपलब्ध नाह - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "रद्द करा (_C)" - -@@ -509,7 +513,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "वैकल्पिक GUI फाइल" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -518,15 +522,15 @@ msgstr "" - "लेखनजोगी डिरेक्ट्रि पाहिजे, परंतु '%s' लेखनजोगी नाही. '%s' कडे हलवा व " - "स्थानांतरीत डाटावर कार्य करा?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "मजकूर फाइलचे दृष्य/संपादन" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "साठवा (_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -534,39 +538,39 @@ msgstr "" - "ह्या अडचणकरिता सादर करण्यजोगी लक्ष्य नाही. /etc/libreport/* मधील संरचना " - "तपासा" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(पाहिजे: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(आवश्यक नाही, डाटा आधीपासूनच अस्तित्वात आहे: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(दृष्य/संपादित कराकरीता येथे क्लिक करा)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(बाइनरी फाइल, %llu बाईट्स्)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(वर्णन उपलब्ध नाही)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu बाईट्स्, %u फाइल्स्" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "विश्लेषण रद्द केले" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -575,7 +579,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -583,7 +587,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -595,75 +599,48 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "विश्लेषणमध्ये व्यत्य आले कारण अडचण सादर करण्याजोगी नाही." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "विश्लेषण अपयशी." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "विश्लेषण अपयशी." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "विश्लेषण पूर्ण झाले, कृपया पुढील टप्पा पहा." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "घटना '%s' करीता विश्लेषण ठरवले नाही" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "विश्लेषणमध्ये व्यत्यय: लेखनजोगी डिरेक्ट्रीविना पुढे जाणे अशक्य." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "विशेषीत करत आहे..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "अवैध घटनानावामुळे backtrace दर तपासणे अशक्य" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -672,99 +649,107 @@ msgstr "" - "संवेदनशील माहिती पाठवण्याकरिता घटना '%s' ला पारवानगी आवश्यक आहे.\n" - "तुम्हाला पुढे जायचे?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "ही अडचण कळवू नका (हे संभाव्यतया अपरिचीत अडचण आहे). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "उघडा (_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' सामान्य फाइल नाही" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "तुम्ही फाइलचे प्रत स्वतःमध्ये बनवत आहात" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s': %s चे प्रत बनवणे अशक्य" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "घटक '%s' आधिपासून अस्तित्वात आहे व संपादनजोगी नाही" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "समाविष्ट करा" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "नाव" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "मूल्य" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "अडचणीचे वर्णन" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "ह्या अडचणीला कसे कळवायचे ते नीवडा" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "अगाऊ माहिती द्या" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "डाटाचे पुर्वावलोकन करा" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "कळवण्यासाठी डाटाची खात्री करा" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "विश्लेषण करत आहे" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "विश्लेषण झाले" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "थांबवा (_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "विश्लेषणकरिता अपलोड करा" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "पुढे (_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "तपशील" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "रिपोर्टकरिता प्रवेश प्रतिबंधीत करा" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -815,28 +800,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "रिपोर्टकरिता प्रवेश प्रतिबंधीत करा" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"प्रतिबंधीत प्रवेशसह Fedora Contrib कर्मचारी वगळता इतरांना अहवाल पाहता येणार " --"नाही (तुम्ही देखील)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "प्रतिबंधित प्रवेशसह अहवालांविषयी अधिक वाचा" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -846,7 +809,7 @@ msgstr "" - "विश्लेषीत करण्यास पसंती करण्यास, गोळा केलेल्या डाटाचे पूर्वावलोकन, व अडचण " - "कुठे कळवायचे, हे तुम्हाला विचारले जाईल. पुढे जाण्यासाठी 'पुढे' क्लिक करा." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -855,11 +818,11 @@ msgstr "" - "हि अडचण कशी आढळली (संकलन-द्वारे)? पुन्हा कसे निर्माण करायचे? अडचणीचे " - "विश्लेषणकरीता कोणत्याहि अगाऊ टिपण्णी? शक्य असल्यास कृपया इंग्रजीचा वापर करा." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "पुढे जाण्यापूर्वी तुम्हाला कसे भरायचे हे भरावे लागेल..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -867,31 +830,31 @@ msgstr "" - "तुमच्या टिपण्णी व्यक्तीगत नाही. त्यांस सार्वजनिकपणे दृष्यास्पद अडचण " - "अहवालांमध्ये समाविष्ट केले जाऊ शकते." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "वर्णन कसे करायचे हे माहिती नसल्यास, तुम्ही खालील करू शकता" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "स्क्रीनकास्ट समाविष्ट करा" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "हि अडचण कशी निर्माण झाली, हे मला माहिती नाही" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "आकार:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "फाइलची जोडणी करा" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "मी डाटाचे पुर्वावलोकन केले व त्यास सादर करण्यास मान्य करतो (_a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -901,19 +864,19 @@ msgstr "" - "पासवर्डस्) काढून टाकले याची खात्री करा. बॅकट्रेस, आदेश ओळ, एंवार्यंमेंट " - "वेरियेबल्स् विश्लेषणकरीताचे विशेष घटके आहेत." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "विश्लेषण अजूनही सुरू झाले नाही" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "लॉग दाखवा" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "रिपोर्टिंग समाप्त झाली. आत्ता हे पटल बंद करणे शक्य आहे." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -922,16 +885,15 @@ msgstr "" - "अडचण वेगळ्या स्थानकडे कळवायचे असल्यास, अगाऊ माहिती गोळा करा, किंवा उत्तम " - "अडचणीचे वर्णन व पद्धतीचा अहवाल द्या, 'पुढे' दाबा." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "मजकूर दाखवा" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "अडचण डिरेक्ट्री" - -@@ -957,78 +919,119 @@ msgstr "अडचण डिरेक्ट्री नाही" - msgid "Can't delete '%s': %s" - msgstr "'%s': %s नष्ट करणे अशक्य" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "आवश्यक घटक आढळले नाही: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid मूल्य वैध नाही: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "आवश्यक घटक आढळले नाही: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "अपलोड केले: %llu पैकी %llu किलाबाईटस्" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s ला %s करीता पाठवत आहे" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "यशस्वीरित्या %s यास %s करीता पाठवत आहे" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "अनिवार्य मूल्य आढळले नाही" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "अवैध utf8 अक्षर '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "अवैध क्रमांक '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "अवैध बूलियन मूल्य '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "असमर्थीत पर्याय प्रकार" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1036,11 +1039,11 @@ msgid "" - msgstr "" - "अवैध डाटामुळे अडचण कळवणे अशक्य. '%s' फाइलमध्ये संख्या समाविष्टीत नाही." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "कृपया ह्या अडचणीला ABRT प्रोजेक्ट डेव्हलपर्स यांना कळवा." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1048,15 +1051,15 @@ msgstr "" - "बॅकट्रेस् अपूर्ण आहे, पुनःनिर्माण करण्यासाठी कृपया योग्य पद्धत पुरवण्याची " - "खात्री करा." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "backtrace बहुदा डेव्हलपरला बगच्या विश्लेषण हेतू मदत पुरवू शकत नाही." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "बॅकट्रेस् वापरण्याजोगी नसल्यामुळे रिपोर्टिंग बंद केले." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1065,11 +1068,26 @@ msgstr "" - "आदेश: \"debuginfo-install %s\" याचा वापर करून कृपया debuginfo स्वहस्ते " - "इंस्टॉल करायचा प्रयत्न करा आणि पुन्हा प्रयत्न करा." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "योग्य debuginfo कदाचित आढळले नाही किंवा coredump सदोषीत आहे." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1078,58 +1096,68 @@ msgstr "तुमची अडचण कदाचित %s\n" - "\n" - "%s तर्फे निर्मीत झाली असावी\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "तुमची अडचण कदाचीत खालीलपैकी एकाने निर्माण होत असेल:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "uReport ला सर्व्हर '%s' करिता अपलोड करण्यास अपयशी, curl: %s सह" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' अस्तित्वात नाही (सर्व्हरपासून त्रुटी 404 आढळली)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "'%s' येथील सर्व्हरमध्ये आंतरिक त्रुटी आढळली (त्रुटी 500 आढळली)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "'%s' येथील सर्व्हर विनंती (त्रुटी 503 प्राप्त) हाताळू शकत नाही" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s': %d पासून अनेपक्षीत HTTP प्रतिसाद" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "'%s' येथे ureport सर्व्हरपासून प्रतिसाद वाचणे अशक्य" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' पासून प्रतिसादमध्ये अवैध रूपण आढळले" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "'%s' पासूनच्या प्रतिसादमध्ये टाइप मिसमॅच आढळले" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "अडचण सादर करताना अपयशी" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "'%s' येथील सर्व्हरने त्रुटी: '%s' सह प्रतिसाद पाठविले" -@@ -1160,21 +1188,34 @@ msgstr "बॅकट्रेस: %s वाचणे अशक्य" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "स्टॅकट्रेस वर्णन निर्माण करणे अशक्य (क्रॅश थ्रेड नाही?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' सिग्नल %u तर्फे नष्ट झाले)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' यशस्वीरित्या पूर्ण झाले)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' हे %u सह संपन्न झाले)\n" -@@ -1257,32 +1298,57 @@ msgid "Bugzilla account password" - msgstr "बगजिला खाते पासवर्ड" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "प्रवेश प्रतिबंधीत" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"निर्मीत बगजिला तिकिटकरिता प्रवेश प्रतिबंधीत करा तसेच अवलोकनकरिता निर्देशीत " -+"गटपासून फक्त ठराविक वापरकर्त्यांनाच परवानगी द्या (अधिक तपशीलकरिता प्रगत " -+"सेटिंग्ज पहा)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "गट" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"निर्देशीत गटांकरिता <a href=\"https://github.com/abrt/abrt/wiki/" -+"FAQ#creating-private-bugzilla-tickets\">?</a> प्रवेश प्रतिबंधीत करा" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "बगजिला URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "बगजिला सर्व्हरचा पत्ता" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL ची तापसणी करा" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL कि वैधता तपासा" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "बगजिला उत्पादन" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1290,11 +1356,11 @@ msgstr "" - "/etc/os-release मध्ये निर्देशीतपेक्षा वेगळे उत्पादन पाहिजे असेल तरच यास " - "निर्देशीत करा" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla उत्पादन आवृत्ती" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1302,8 +1368,8 @@ msgstr "" - "/etc/os-release मध्ये निर्देशीतपेक्षा वेगळी उत्पादन आवृत्ती पाहिजे असेल तरच " - "यास निर्देशीत करा" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1312,8 +1378,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP प्रॉक्सी" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1322,8 +1388,8 @@ msgstr "HTTP प्रॉक्सी" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTP करिता वापरण्याजोगी प्रॉक्सी सर्व्हर सेट करतो" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1332,8 +1398,8 @@ msgstr "HTTP करिता वापरण्याजोगी प्रॉ - msgid "HTTPS Proxy" - msgstr "HTTPS प्रॉक्सी" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1342,32 +1408,6 @@ msgstr "HTTPS प्रॉक्सी" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS करिता वापरण्यासाठी प्रॉक्सी सर्व्हर सेट करतो" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "प्रवेश प्रतिबंधीत" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"निर्मीत बगजिला तिकिटकरिता प्रवेश प्रतिबंधीत करा तसेच अवलोकनकरिता निर्देशीत " --"गटपासून फक्त ठराविक वापरकर्त्यांनाच परवानगी द्या (अधिक तपशीलकरिता प्रगत " --"सेटिंग्ज पहा)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "गट" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"निर्देशीत गटांकरिता <a href=\"https://github.com/abrt/abrt/wiki/" --"FAQ#creating-private-bugzilla-tickets\">?</a> प्रवेश प्रतिबंधीत करा" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1408,13 +1448,13 @@ msgstr "" - "वेरियेबल आणि संरचनाकडे दुर्लक्ष करत आहे" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "प्रवेशविना पुढे जाणे अशक्य" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "पासवर्डविना पुढे जाणे अशक्य" -@@ -1426,10 +1466,10 @@ msgstr "%s येथे बगजिलामध्ये प्रवेश क - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "अवैध पासवर्ड किंवा प्रवेश. कृपया तुमचे Bugzilla प्रवेश द्या:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "अवैध पासवर्ड किंवा प्रवेश. कृपया तुमचे '%s' करिता पासवर्ड द्या:" -@@ -1444,7 +1484,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1478,120 +1518,97 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Bugzilla ला अडचण कळवतो.\n" --"\n" --"साधन DIR वाचतो. त्यानंतर Bugzilla मध्ये प्रवेश करतो आणि\n" --"'Whiteboard' मधील abrt_hash:HEXSTRING रचनासह बग शोधण्याचा प्रयत्न करतो.\n" --"\n" --"असे बग न आढळल्यास, नवीन बग निर्माण केले जाते. DIR मधील घटकांना बग वर्णन " --"किंवा जोडणी स्वरूप\n" --"बगमध्ये साठवले जाते,\n" --"प्रकार आणि आकारवर आधारित.\n" --"\n" --"नाहीतर, असे बग आढळल्यास आणि त्यास CLOSED DUPLICATE म्हणून चिन्ह लावल्यास,\n" --"साधन हुबेहुबची श्रृंखला बाळगतो, जोपर्यंत त्यास non-DUPLICATE बग आढळत नाही.\n" --"आढळलेल्या बगमध्ये साधन नवीन टिपण्णी समाविष्ट करतो.\n" --"\n" --"नवीन किंवा संपादित बगकरिता URL ची stdout करिता छपाई केली जाते आणि त्यास\n" --"'reported_to' एलिमेंटमध्ये रेकॉर्ड केले जाते.\n" --"\n" --"पर्याय -t Bugzilla स्थळावरील आधीपासूनच निर्मीत बगकरिता FILEs अपलोड करतो.\n" --"-d DIR तर्फे निर्देशीत डिरेक्ट्री पासून बग ID प्राप्त केले जाते.\n" --"DIR मधील अडचण डाटा Bugzilla करिता कधिही कळवले नसल्यास, अपलोड अपयशी ठरेल.\n" --"\n" --"पर्याय -tID Bugzilla स्थळावरील निर्देशीत ID करिता FILEs अपलोड करतो.\n" --"-d DIR कडे दुर्लक्ष केले जाते.\n" --"\n" --"पर्याय -w बगजिला वापरकर्त्याला बगच्या CC सूचीमध्ये समाविष्ट करतो.\n" --"\n" --"पर्याय -r reporter_to घटकातील शेवटचे युआरएल सेट करतो\n" --"ज्यास URL क्षेत्रकरिता TRACKER_NAME सह प्रिफिक्स केले जाते. हा पर्याय " --"तेव्हाच लागू होतो जेव्हा नवीन बगसादर केले जाते. पूर्वनिर्धारित मूल्य 'ABRT " --"सर्व्हर' आहे\n" --"\n" --"निर्देशीत नसल्यास, CONFFILE खालीलकरिता निर्देशीत होते " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "संरचना फाइल (एकापेक्षा जास्तवेळी देणे शक्य आहे)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "प्रारंभीक टिपण्णीकरिता फाइलचे रूपण करत आहे" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "ड्युप्लिकेट्सकरिता फाइलचे रूपण करत आहे" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILE समाविष्ट करा [या IDसह बग संलग्न करा]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "बग निर्माण करतेवेळी, बाइनरी फाइल्स् समाविष्ट करा" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "हि अडचण आधिपासूनच कळवली असल्यास रिपोर्टिंग जबरनपणे लागू करा" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - "बगजिला वापरकर्त्याला CC सूचीमध्ये समाविष्ट करा [ह्या ID असलेल्या बगमध्ये]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "DUPHASH असलेल्या BUG_ID ची छपाई करा" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "'reported_to' पासून अगाऊ URL करिता बग ट्रॅकरचे नाव" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "फक्त ह्या गटकरिताच प्रवेश प्रतिबंधीत करा" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "डिबग" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "बगजिलामध्ये समान अडचणींकरिता पहात आहे" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" --msgstr "प्रवेश संरचनातर्फे पुरवले जात नाही. कृपया तुमचे Bugzilla प्रवेश द्या:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "पासवर्ड संरचनातर्फे पुरवले जात नाही. कृपया '%s' करिता पासवर्ड द्या:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1599,7 +1616,7 @@ msgstr "" - "Bugzilla ID प्राप्त करणे अशक्य कारण ह्या अडचणीला अजूनही Bugzilla मध्ये कळवले " - "नाही." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1608,75 +1625,97 @@ msgstr "" - "ह्या अडचणीला Bugzilla '%s' करिता कळवले आहे जे संरचीत Bugzilla '%s' पासून " - "भिन्न आहे." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Bugzilla '%s' करिता सदोषीत url." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID '%s' चे वापर करत आहे" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "बाहेर पडत आहे" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "अडचण डाटापासून Bugzilla उत्पादन ओळखणे अशक्य." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "ड्युप्लिकेट्स् करीता तपासणी करत आहे" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "नवीन बग निर्माण करत आहे" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "नवीन बगचे निर्माण अपयशी." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "बग %i करिता बाहेरील URL समाविष्ट करत आहे" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "बग %i करीता जोडणी समाविष्ट करत आहे" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "बग आधिपासूनच कळवले आहे: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s ला CC सूचीमध्ये समाविष्ट करत आहे" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "बग %d मध्ये नवीन टिपण्णी समाविष्ट करत आहे" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "उत्तम बॅकट्रेस जोडत आहे" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "बग इतिहासात समान टिपण्णी आढळली, नवीन समाविष्ट केले नाही" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "स्थिती: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1711,7 +1750,7 @@ msgstr "" - "$KerneloopsReporter_SubmitURL तर्फे घटक खोडून पुन्हा लिहणे शक्य आहे." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "संरचना फाइल" - -@@ -1743,12 +1782,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ईमेल पाठवत आहे..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "इमेल: %s करीता पाठवले" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1762,11 +1801,11 @@ msgstr "" - "\n" - "निर्देशीत नसल्यास, CONFFILE याकरीता पूर्वनिर्धारित असते " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "काँफिग फाइल" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "फक्त सूचीत करा (अहवाल पाठवले म्हणून चिन्ह लावा)" - -@@ -1801,34 +1840,34 @@ msgstr "वापरकर्तातर्फे रद्द केले." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "लेखनकरीता '%s' उघडणे अशक्य. कृपया इतर फाइल पसंत करा:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "%s करीता रिपोर्ट समाविष्ट केले गेले" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "रिपोर्ट %s करीता साठवले गेले" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "सर्व्हरने त्रुटी: '%s' सह प्रतिसाद दिला" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "तुम्हाला तरिहि RHTSupport टिकिट निर्माण करायचे?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1837,77 +1876,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILEs अपलोड करीता [या ID सह घटना संलग्न करा]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "संरचनातर्फे प्रवेश पुरवले नाही. कृपया RHTS प्रवेश द्या:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "घटना '%2$s' करीता '%1$s' समाविष्ट करत आहे" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "तात्पुर्ती डिरेक्ट्रीचे निर्माण अशक्य " -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "डाटा संकुचीत करत आहे" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "तात्पुर्ती डिरेक्ट्रीचे निर्माण अशक्य " -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "यामध्ये तात्पुर्ती फाइल निर्माण करणे अशक्य" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "सूचनाकरिता तपासणी करत आहे" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "नविन घटना निर्माण करत आहेे" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "अडचण डाटापासून RH Support Product ओळखणे अशक्य." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "घटना '%s' करिता टिपण्णी समाविष्ट करत आहे" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "घटना '%s' करिता अडचण डाटा जोडत आहे" -@@ -1920,45 +1963,49 @@ msgstr "संबंधित असणारे दस्तऐवजीकर - msgid "Updates which possibly help: " - msgstr "कदाचित फायदेशीर ठरणारी सुधारणा: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "URL विना पुढे जाणे अशक्य" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "आर्काइव्ह निर्माण केली: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"अडचण डिरेक्ट्री DIR चे कम्प्रेस्ड टारबॉल URL करिता अपलोड करतो.\n" --"URL निर्देशीत नसल्यास, टारबॉलचे निर्माण करतो " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "अपलोड करण्याजोगी बेस URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1975,7 +2022,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2018,48 +2065,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2067,47 +2114,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2143,39 +2190,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2339,6 +2389,22 @@ msgstr "FTP प्रॉक्सी" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP करिता वापरण्यासाठी प्रॉक्सी सर्व्हर सेट करतो" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2406,7 +2472,7 @@ msgstr "बग %i CLOSED आहे, परंतु RESOLUTION आढळले - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "बग %i DUPLICATE म्हणून CLOSED आहे, परंतु DUP_ID आढळले नाही" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2416,17 +2482,17 @@ msgstr "" - "कृपया अधिक माहितीकरिता https://github.com/abrt/abrt/wiki/FAQ#creating-" - "private-bugzilla-tickets पहा" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "नवीन बग id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "बगजिला यास बग %d याचे पॅरेंट आढळले नाही" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Bug.search(quicksearch) रिटर्न मूल्यमध्ये सदस्य 'bugs' समाविष्टीत नाही" -@@ -2620,39 +2686,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "सर्व्हर URL निर्देशीत करा" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "ureport सर्व्हरकरीता असुरक्षित जोडणी स्वीकारा" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "क्लाएंटची ओळख पटवा याचा वापर करा" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "जोडणीजोगी uReport चे bthash (-A सह मतभेदीय आहे)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "reported_to पासून bthash करिता जोडणी करा (-a सह मतभेदीय आहे)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "संपर्क ईमेल पत्ता (-a|-A आवश्यक, -E सह मतभेदीय आहे)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2660,29 +2726,53 @@ msgstr "" - "वातावरण किंवा संरचना फाइलपासूनचे संपर्क ईमेल पत्ता (-a|-A आवश्यक, -e सह " - "मतभेदीय आहे)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ बगची जोडणी करा (-a|-A आवश्यक, -B सह मतभेदीय आहे)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "reported_to पासून शेवटच्या RHBZ ची जोडणी करा (-a|-A आवश्यक, -b सह मतभेदीय " - "आहे)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2691,33 +2781,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "ह्या अडचणमध्ये uReport चे वाटप नाही." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "ह्या अडचणीला Bugzilla करिता सादर केले नाही." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "बगजिला URL '%s' मध्ये बग ID शोधणे अशक्य" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "बगजिला URL '%s' पासून बग ID वाचणे अशक्य" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2725,19 +2825,19 @@ msgstr "" - "एंवार्यंमेंट वेरियेबल 'uReport_ContactEmail' किंवा संरचना पर्याय " - "'ContactEmail' पैकी कोणतेही सेट केले नाही" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "तुम्हाला जोडणीजोगी uReport चे bthash निर्देशीत करावे लागेल." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "रिकामे uReport अपलोड करत नाही" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "ही अडचण आधीच कळवली गेली आहे." - -diff --git a/po/nb.po b/po/nb.po -index e23e559..8fd9130 100644 ---- a/po/nb.po -+++ b/po/nb.po -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -18,7 +18,7 @@ msgstr "" - "libreport/language/nb/)\n" - "Language: nb\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -171,46 +171,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -218,118 +215,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -378,7 +382,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -404,7 +408,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -483,60 +487,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternativ brukergrensesnittfil" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Vis/rediger en tekstfil" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(klikk her for å vise/redigere)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binær fil, %llu byte)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(ingen beskrivelse)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu byte, %u filer" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -545,7 +549,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -553,7 +557,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -565,174 +569,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "«%s» er ikke en vanlig fil" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Du prøver å kopiere en fil til seg selv" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Kan ikke kopiere «%s»: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Oppføring «%s» eksisterer allerede og kan ikke endres" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Ta med" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Navn" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Verdi" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Beskrivelse av problemet" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Gi ekstra informasjon" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Bekreft data i rapporten" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detaljer" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -779,109 +764,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Størrelse:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Legg ved en fil" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -907,172 +871,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "j" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Ugyldig tall «%s»" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1103,21 +1133,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1198,49 +1241,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL til Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1249,8 +1312,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1259,8 +1322,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1269,8 +1332,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1279,27 +1342,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1328,13 +1370,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1349,7 +1391,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1364,7 +1406,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1399,157 +1441,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1574,7 +1657,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Konfigurasjonsfil" - -@@ -1604,12 +1687,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Sender en e-post …" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1618,11 +1701,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1654,34 +1737,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1690,77 +1773,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1773,41 +1860,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1824,7 +1919,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1867,48 +1962,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1916,47 +2011,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1992,39 +2087,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2186,6 +2284,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2251,24 +2365,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2461,65 +2575,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2528,51 +2666,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/nds.po b/po/nds.po -index 48e3c0c..673c5d5 100644 ---- a/po/nds.po -+++ b/po/nds.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/nds/)\n" - "Language: nds\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -169,46 +169,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -216,118 +213,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -376,7 +380,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -402,7 +406,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -481,60 +485,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -543,7 +547,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -551,7 +555,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -563,174 +567,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Naam" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Details" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -777,109 +762,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -905,172 +869,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1101,21 +1131,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1196,49 +1239,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1247,8 +1310,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1257,8 +1320,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1267,8 +1330,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1277,27 +1340,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1326,13 +1368,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1347,7 +1389,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1362,7 +1404,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1397,157 +1439,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1572,7 +1655,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1602,12 +1685,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1616,11 +1699,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1652,34 +1735,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1688,77 +1771,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1771,41 +1858,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1822,7 +1917,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1865,48 +1960,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1914,47 +2009,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1990,39 +2085,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2184,6 +2282,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2249,24 +2363,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2459,65 +2573,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2526,51 +2664,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/nl.po b/po/nl.po -index 657d773..0c7e2b9 100644 ---- a/po/nl.po -+++ b/po/nl.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "nl/)\n" - "Language: nl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -181,46 +181,43 @@ msgstr "Selecteer een uit te voeren gebeurtenis:" - msgid "Select a workflow to run: " - msgstr "Selecteer een uit te voeren verwerkvolgorde:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Extraheren cpio van {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Kan niet schrijven naar '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Kan pakket '{0}' niet extraheren" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Caching bestanden van {0} gemaakt van {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Kan geen bestanden extraheren van '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Kan '{0}': {1} niet verwijderen" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Downloaden ({0} van {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -228,39 +225,39 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Speuren naar noodzakelijke pakketten in repositories" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Kan geen pakketten vinden voor {0} debuginfo bestanden" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Pakketten te downloaden: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Downloaden {0:.2f}Mb, installeergrootte: {1:.2f}Mb. Doorgaan?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Download door gebruiker afgebroken" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -268,7 +265,7 @@ msgstr "" - "Waarschuwing: Niet genoeg vrije ruimte in tmp dir '{0}' ({1:.2f}Mb over). " - "Verdergaan?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -277,38 +274,45 @@ msgstr "" - "Waarschuwing: Niet genoeg vrije ruimte in cache dir '{0}' ({1:.2f}Mb over). " - "Verdergaan?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Downloaden pakkat {0} is mislukt" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Uitpakken mislukt, download wordt afgebroken..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Verwijderen {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -316,37 +320,37 @@ msgstr "" - "Probleem '{0!s}' trad op tijdens het downloaden van spiegel: '{1!s}'. " - "Probeer de volgende" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Fout bij het initialiseren van yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Fout: kan cachedir niet aanmaken, afsluiten" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Kan repository '{0!s}' niet uitzetten: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Kan asynchrone download niet uitzetten, de output kan artefacten bevatten!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Kan {0}: {1} niet instellen, wordt uitgeschakeld" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Fout bij ophalen metadata: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Fout bij ophalen bestandenlijst: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "Kan bestand '{0}' niet kopieren: {1}" -@@ -395,7 +399,7 @@ msgstr "Gebeurtenissen" - msgid "C_onfigure" - msgstr "C_onfigureer" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Sluiten" - -@@ -422,7 +426,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Annuleren" - -@@ -510,7 +514,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternatief GUI bestand" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -519,15 +523,15 @@ msgstr "" - "Er is een beschrijfbare map nodig, maar '%s' is niet beschrijfbaar. Naar " - "'%s' verplaatsen en bewerking op de verplaatste data uitvoeren?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Bekijk/bewerk een tekstbestand" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "_Opslaan" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -535,39 +539,39 @@ msgstr "" - "Er zijn geen rapportagedoelen gedefinieerd voor dit probleem. Controleer " - "configuratie in /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(vereist: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(niet nodig, data bestaat al: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(Klik hier voor bekijken/bewerken)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binair bestand, %llu bytes)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(geen beschrijving)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bytes, %u bestanden" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Verwerking werd geannuleerd" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -576,7 +580,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -584,7 +588,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -596,77 +600,50 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "Het verwerken werd onderbroken omdat het probleem niet gerapporteerd kan " - "worden." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Verwerking is mislukt." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Verwerking beëindigd " - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Verwerking is beëindigd, ga verder met de volgende stap." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Er is geen verwerking gedefinieerd voor de gebeurtenis '%s'" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "Verwerking onderbroken: kan niet verdergaan zonder beschrijfbare map." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Bezig met verwerken..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "Kan backtrace rang niet controleren wegens ongeldige voorval naam" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -675,101 +652,109 @@ msgstr "" - "Voorval '%s' vereist toestemming om mogelijk gevoelige data te versturen.\n" - "Wil je verder gaan?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Dit probleem moet niet gerapporteerd worden (het is waarschijnlijk een " - "bekend probleem). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Openen" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' is geen gewoon bestand" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Je probeert een bestand naar zichzelf te kopieren" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Kan '%s' niet kopieren: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Item '%s' bestaat al en kan niet gewijzigd worden" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Bijsluiten" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Naam" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Waarde" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Probleem beschrijving" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Selecteer de rapporteermethode voor dit probleem" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Bied extra informatie" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Bekijk de data" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Bevestig de te rapporteren data" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Bezig met verwerken" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Verwerken is beëindigd" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "_Stop" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Upload voor analyse" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Ga verder" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Details" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Beperk toegang tot het rapport" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -820,28 +805,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Beperk toegang tot het rapport" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Niemand behalve Fedora Contrib medewerkers zal toegestaan worden het rapport " --"te bekijken met beperkte toegang (zelfs jij niet)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Lees meer over rapporten met beperkte toegang" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -852,7 +815,7 @@ msgstr "" - "verzamelde data te bekijken, en te kiezen waar het probleem gerapporteerd " - "moet worden. Klik op 'Vooruit' om verder te gaan." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -862,11 +825,11 @@ msgstr "" - "worden? Heb je extra informatie die nuttig is voor de diagnose van het " - "probleem? Gebruik indien mogelijk de Engelse taal." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Je moet het hoe invullen voordat je verder kan gaan..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -874,31 +837,31 @@ msgstr "" - "Jouw opmerkingen zijn niet privé. Ze kunnen opgenomen worden in het " - "publiek zichtbare probleem rapporten." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Als je niet weet hoe het te beschrijven, kun je" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "voeg een screencast toe" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Ik weet niet wat dit probleem veroorzaakte" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Grootte:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Voeg een bestand toe" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Ik heb de data bekeken en st_a toe om het te versturen" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -909,19 +872,19 @@ msgstr "" - "Backtrace, commando-regels en omgevingsvariabelen zijn typische items die " - "bekeken moeten worden." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Verwerken is nog niet begonnen" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Laat de log zien" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "De rapportage is klaar. Je kunt dit venster nu sluiten." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -932,16 +895,15 @@ msgstr "" - "aanbieden en het rapportage proces opnieuw wilt uitvoeren, duw dan op " - "'Vooruit'" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Beschrijf uitgebreid" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Probleem map" - -@@ -967,78 +929,119 @@ msgstr "geen probleemmap" - msgid "Can't delete '%s': %s" - msgstr "Kan '%s' niet verwijderen: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "j" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Vereist item '%s' ontbreekt" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid waarde is ongeldig: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Vereist item '%s' ontbreekt" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Upload: %llu van %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Verstuur %s naar %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s succesvol verzonden naar %s" -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Ontbrekende verplichte waarde" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Ongeldig utf8 karakter '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Ongeldig nummer '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Ongeldige booleaanse waarde '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Niet-ondersteund optie type" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1047,11 +1050,11 @@ msgstr "" - "Het probleem kan wegens ongeldige data niet gerapporteerd worden. '%s' " - "bestand bevat geen getal." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Rapporteer dit probleem aan ABRT projectontwikkelaars." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1059,17 +1062,17 @@ msgstr "" - "De backtrace is niet compleet, zorg ervoor om voor het reproduceren de " - "juiste stappen op te volgen." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "De backtrace kan de ontwikkelaar waarschijnlijk niet helpen om een diagnose " - "van de bug te maken." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Rapportage is uitgezet omdat de backtrace onbruikbaar is." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1078,11 +1081,26 @@ msgstr "" - "Probeer debuginfo handmatig te installeren met het commando: \"debuginfo-" - "install %s\" en probeer het opnieuw." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "Waarschijnlijk ontbreekt juiste debuginfo of is de coredump corrupt." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1091,26 +1109,36 @@ msgstr "Jouw probleem lijkt veroorzaakt te worden door %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Jouw probleem lijkt door een van het volgende veroorzaakt te worden:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "uReport met curl uploaden naar de server '%s' mislukte: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "De URL '%s' bestaat niet (kreeg error 404 van de server)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "De server bij '%s' kwam een interne fout tegen (kreeg error 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" -@@ -1118,33 +1146,33 @@ msgstr "" - "503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "Onverwacht HTTP antwoord van '%s': %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "Kan antwoord van ureport server op '%s' niet ontleden" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "Het antwoord van '%s' heeft een ongeldig formaat" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "Een type mismatch is ontdekt in het antwoord van '%s'" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Het probleem indienen is mislukt" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "De server bij '%s' antwoorde met een fout: '%s'" -@@ -1175,21 +1203,34 @@ msgstr "Kan backtrace niet ontleden: %s" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "Kan geen stacktrace beschrijving genereren (geen crash thread?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' werd afgeschoten door signaal %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' succesvol afgerond)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' afgesloten met %u)\n" -@@ -1275,32 +1316,57 @@ msgid "Bugzilla account password" - msgstr "Bugzilla account wachtwoord" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Beperk toegang" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Beperk toegang tot de aangemaakt bugzilla ticket om alleen gebruikers van " -+"gespecificeerde groepen het te laten bekijken (zie de geavanceerde " -+"instellingen voor meer details)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Groepen" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Beperk de toegang tot gespecificeerde groepen <a href=\"https://github." -+"com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Adres van Bugzilla server" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Verifieer SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Controleer geldigheid van SSL sleutel" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla product" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1308,11 +1374,11 @@ msgstr "" - "Specificeer dit alleen als je een ander product nodig hebt dan " - "gespecificeerd in /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla product versie" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1320,8 +1386,8 @@ msgstr "" - "Specificeer dit alleen als je een andere productversie nodig hebt dan " - "gespecificeerd in /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1330,8 +1396,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1340,8 +1406,8 @@ msgstr "HTTP proxy" - msgid "Sets the proxy server to use for HTTP" - msgstr "Stelt de proxyserver in om te gebruiken voor HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1350,8 +1416,8 @@ msgstr "Stelt de proxyserver in om te gebruiken voor HTTP" - msgid "HTTPS Proxy" - msgstr "HTTPS proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1360,32 +1426,6 @@ msgstr "HTTPS proxy" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Stelt de proxyserver in om te gebruiken voor HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Beperk toegang" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Beperk toegang tot de aangemaakt bugzilla ticket om alleen gebruikers van " --"gespecificeerde groepen het te laten bekijken (zie de geavanceerde " --"instellingen voor meer details)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Groepen" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Beperk de toegang tot gespecificeerde groepen <a href=\"https://github." --"com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1427,13 +1467,13 @@ msgstr "" - "argument, negeer de omgevingsvariabele en configuratie" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Kan niet verdergaan zonder in te loggen" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Kan niet verdergaan zonder wachtwoord" -@@ -1445,10 +1485,10 @@ msgstr "Inloggen op Bugzilla op %s" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "Ongeldig wachtwoord of inlog. Vul je Bugzilla inlogwaarden in:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "Ongeldig wachtwoord of inlogwaarden. Vul het wachtwoord in voor '%s':" -@@ -1463,7 +1503,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1497,123 +1537,89 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROEP-NAAM]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"MAP\n" --"of:\n" --"& [-v] [-c CONFFILE]... [-d MAP] -t[ID] BESTAND...\n" --"of:\n" --"& [-v] [-c CONFFILE]... [-d MAP] -t[ID] -w\n" --"of:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Rapporteert probleem aan Bugzilla.\n" --"\n" --"Het gereedschap leest MAP. Logt daarna in op Bugzilla en probeert een bug te " --"vinden\n" --"met dezelfde abrt_hash:HEXSTRING in 'Whiteboard'.\n" --"\n" --"Als zo'n bug niet gevonden wordt, dan wordt een nieuwe bug aangemaakt. " --"Elementen van MAP\n" --"worden opgeslagen in de bug als onderdeel van de bugbeschrijving of als " --"bijlagen,\n" --"afhankelijk van hun type en grootte.\n" --"\n" --"Als zo'n bug wel gevonden wordt en het is gemarkeerd met CLOSED DUPLICATE, " --"dan\n" --"volgt het gereedschap de keten van duplicaten totdat het een niet-DUPLICATE " --"bug vindt.\n" --"Het gereedschap voegt een nieuw commantaar toe aan de gevonden bug.\n" --"\n" --"De URL van de nieuwe of veranderde bug wordt naar stdout geprint en " --"opgeslagen in\n" --"het 'reported_to' element.\n" --"\n" --"Optie -t uploadt BESTANDen naar de reeds aangemaakte bug op de Bugzilla site." --"\n" --"De bug ID wordt verkregen van de map gespecificeerd met -d MAP.\n" --"Als de probleem data in MAP nog nooit aan BUzilla gerapporteerd werd, zal de " --"upload falen.\n" --"\n" --"Optie -tID uploadt BESTANDen naar de bug met gespecificeerd ID op de " --"Bugzilla site.\n" --"-d MAP wordt genegeerd.\n" --"\n" --"Optie -w voegt de bugzilla gebruiker toe aan de CC lijst van de bug.\n" --"\n" --"Optie -r stelt de laatste url van reporter_to element in welke TRACKER_NAME " --"als prefix\n" --"voor het URL veld. Deze optie wordt alleen toegepast als een nieuwe bug " --"opgeslagen\n" --"wordt. De standaard waarde is 'ABRT Server'\n" --"\n" --"Indien niet gespecificeerd, wordt de waarde van CONFFILE" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Configuratiebestand (mag meerde keren opgegeven worden)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Bestand formatteren voor initieel commentaar" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Bestand formatteren voor duplicaten" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Voeg BESTANDen toe [aan bug met deze ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Voeg bij het aanmaken van een big ook binaire bestanden toe " - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Forceer rapporteren zelfs als dit probleem al gerapporteerd is" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "Voeg bugzilla gebruiker toe aan CC lijst [van bug met deze ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Print BUG_ID die de gegeven DUPHASH heeft" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "Een naam van bug volger voor een extra URL uit 'reported_to'" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Beperk toegang alleen tot deze groep" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Debug" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Zoeken naar vergelijkbare problemen in bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." - msgstr "" --"Inloggen wordt door de configuratie niet aangeboden. Vul je Bugzilla inlogwaarden " --"in:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1622,7 +1628,7 @@ msgstr "" - "Wachtwoord wordt door de configuratie niet geleverd. Vul het wachtwoord in " - "voor '%s':" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1630,7 +1636,7 @@ msgstr "" - "Kan Bugzilla ID niet krijgen omdat dit probleem nog niet aan Bugzilla " - "gerapporteerd werd." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1639,77 +1645,99 @@ msgstr "" - "Dit probleem is gerapporteerd aan Bugzilla '%s' welke verschilt van de " - "geconfigureerde Bugzilla '%s'." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Ongeldige url voor Bugzilla '%s'." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID '%s' wordt gebruikt" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Uitloggen" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "Kan Bugzilla product niet bepalen uit de probleem data." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Check voor duplicaten" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Een nieuw bug aanmaken" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Aanmaken van een nieuwe bug mislukte." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Externe URL wordt toegevoegd aan bug %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Toevoegsels toevoegen aan bug %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "De bug is al gerapporteerd: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s wordt toegevoegd aan CC lijst" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Voeg nieuw commentaar toe aan bug %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Een betere backtrace toevoegen " - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Hetzelfde commentaar werd in de bug geschiedenis gevonden, niet opnieuw " - "toegevoegd" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Status: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1744,7 +1772,7 @@ msgstr "" - "Parameter kan overschreven worden via $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Configuratiebestand" - -@@ -1776,12 +1804,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Email wordt verstuurd..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Email werd verstuurd naar: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1795,11 +1823,11 @@ msgstr "" - "\n" - "Indien niet gespecificeerd is de standaard voor CONFBESTAND " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Config bestand" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Alleen aangegeven (Markeer het rapport niet als verstuurd)" - -@@ -1834,34 +1862,34 @@ msgstr "Afgebroken door gebruiker" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Kan '%s' niet openen voor schrijven. Selecteer een ander bestand:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Het rapport is toegevoegd aan %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Het rapport is opgeslagen in %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "Server antwoordde met een fout: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Wil je nog steeds een RHTSupport ticket aanmaken?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1870,78 +1898,82 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Upload BESTANDen [naar kwestie met deze ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "Inloggen wordt niet aangeboden door de configuratie. Vul je RHTS inlog in:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' toevoegen aan kwestie '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Kan geen tijdelijke map aanmaken in" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Data comprimeren" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Kan geen tijdelijke map aanmaken in" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Kan geen tijdelijk bestand aanmaken in" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Controleren op hints" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Een nieuw geval aanmaken" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "Kan RH Support product niet bepalen uit de probleem data." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Commentaar toevoegen aan geval '%s'" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Probleem data toevoegen aan geval '%s'" -@@ -1954,45 +1986,49 @@ msgstr "Documentatie die relevant kan zijn: " - msgid "Updates which possibly help: " - msgstr "Vernieuwingen die misschien helpen: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Kan niet verdergaan zonder URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Archief is aangemaaktg: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d MAP [-c CONFFILE] [-u URL]\n" --"\n" --"Uploadt gecomprimeerde tarball van probleemmap MAP naar URL.\n" --"Als URL niet gespecificeerd werd, wordt de tarball aangemaakt in" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Basis URL om naar te uploaden" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -2009,7 +2045,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2052,48 +2088,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2101,47 +2137,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2177,39 +2213,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2375,6 +2414,22 @@ msgstr "FTP proxy" - msgid "Sets the proxy server to use for FTP" - msgstr "Stelt de proxyserver in om te gebruiken voor FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2441,7 +2496,7 @@ msgstr "Bug %i is CLOSED, maar heeft geen RESOLUTION" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Bug %i is CLOSED als DUPLICATE, maar heeft geen DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2451,17 +2506,17 @@ msgstr "" - "groepen gespecificeerd, zie https://github.com/abrt/abrt/wiki/FAQ#creating-" - "private-bugzilla-tickets voor meer info" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Nieuwe bug id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla kon ouder van bug %d niet vinden" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) return waarde bevatte geen lid 'bugs'" - -@@ -2654,39 +2709,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Specificeer server URL" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Sta onbeveiligde verbinden met ureport server toe" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Gebruik cliënt authenticatie" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "bthash van uReport om toe te voegen (conflicteert met -A) " - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "voeg toe aan een bthash van reported_to (conflicteert met -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "neem contact op met e-mail adres (vereist -a|-A, conflicteert met -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2694,29 +2749,53 @@ msgstr "" - "neem contact op met e-mail adres van omgeving of configuratiebestand " - "(vereist -a|-A, conflicteert met -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "voeg RHBZ bug toe (vereist -a|-A, conflicteert met -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "voeg laatste RHBZ bug toe van reported_to (vereist -a|-A, conflicteert met -" - "b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2725,33 +2804,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Aan dit probleem is nog geen uReport toegekend." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Dit probleem is nog niet gerapporteerd aan Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Kan bug ID niet vinden in bugzilla URL '%s'" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Kan bug ID niet ontleden uit bugzilla URL '%s'" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2759,19 +2848,19 @@ msgstr "" - "Noch omgevingsvariable 'uReport_ContactEmail' noch configuratie optie " - "'ContactEmail' zijn ingesteld" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Je moet bthash van uReport specificeren om toe te kunnen voegen." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Kan geen leeg uReport uploaden" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Dit probleem is al gerapporteerd." - -diff --git a/po/or.po b/po/or.po -index 7041cfa..eb881ca 100644 ---- a/po/or.po -+++ b/po/or.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,7 +19,7 @@ msgstr "" - "or/)\n" - "Language: or\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -183,46 +183,43 @@ msgstr "ଚଲାଇବା ପାଇଁ ଗୋଟିଏ ଘଟଣା ବାଛ - msgid "Select a workflow to run: " - msgstr "ଚଲାଇବା ପାଇଁ ଏକ କାର୍ଯ୍ୟପନ୍ଥା ବାଛନ୍ତୁ: " - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0}ରୁ cpio କୁ ବାହାର କରୁଅଛି" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}' ରେ ଲେଖି ପାରିବେ ନାହିଁ: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "ପ୍ୟାକେଜ '{0}' କୁ ବାହାର କରିପାରିବେ ନାହିଁ" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{ 1} ରୁ ନିର୍ମିତ '{0}' ଫାଇଲଗୁଡ଼ିକୁ କ୍ୟାଶରେ ରଖୁଅଛି" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' ରୁ ଫାଇଲଗୁଡ଼ିକୁ ବାହାର କରିପାରିବେ ନାହିଁ" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' କୁ ବାହାର କରିପାରିବେ ନାହିଁ: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "ଆହରଣ କରୁଅଛି ({1} ର {0}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -230,39 +227,39 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "ସଂଗ୍ରହାଳୟରେ ଆବଶ୍ୟକୀୟ ପ୍ୟାକେଜଗୁଡ଼ିକୁ ଦେଖୁଅଛି" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ ପାଇଁ ପ୍ୟାକେଜଗୁଡ଼ିକୁ ଖୋଜିପାରିବେ ନାହିଁ" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "ଆହରଣ କରିବା ପାଇଁ ଥିବା ପ୍ୟାକେଜଗୁଡ଼ିକ: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "ଆହରଣ କରୁଅଛି {0:.2f}Mb, ସ୍ଥାପନ ଆକାର: {1:.2f}Mb. ଅଗ୍ରସର କରିବେ କି?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "ଚାଳକ ଦ୍ୱାରା ଆହରଣ ବାତିଲ ହୋଇଛି" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -270,7 +267,7 @@ msgstr "" - "ଚେତାବନୀ: tmp dir '{0}' ରେ ଯଥେଷ୍ଟ ସ୍ଥାନ ନାହିଁ ({1:.2f}Mb ବଳିଛି)। ଆଗକୁ ବଢ଼ିବେ " - "କି?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -279,38 +276,45 @@ msgstr "" - "ଚେତାବନୀ: cache dir '{0}' ରେ ଯଥେଷ୍ଟ ସ୍ଥାନ ନାହିଁ ({1:.2f}Mb ବଳିଛି)। ଆଗକୁ " - "ବଢ଼ିବେ କି?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "{0} ପ୍ୟାକେଜକୁ ଆହରଣ କରିବା ବିଫଳ ହୋଇଛି" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "ପ୍ୟାକ କରିବା ବିଫଳ ହୋଇଛି, ଆହରଣକୁ ବନ୍ଦ କରୁଅଛି..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "ଅପସାରଣ କରୁଅଛି {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -318,38 +322,38 @@ msgstr "" - "ପ୍ରତିବିମ୍ବରୁ ଆହରଣ କରିବା ସମୟରେ ସମସ୍ୟା '{0!s}' ଘଟିଛି: '{1!s}'. ପରବର୍ତ୍ତୀକୁ " - "ଚେଷ୍ଟା କରୁଅଛି" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum କୁ ପ୍ରାରମ୍ଭ କରିବାରେ ତ୍ରୁଟି (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "ତ୍ରୁଟି: cachedir ପ୍ରସ୍ତୁତ କରି ପାରିବେ ନାହିଁ, ପ୍ରସ୍ଥାନ କରୁଅଛି" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "ରେପୋଜିଟୋରୀ '{0!s}' କୁ ନିଷ୍କ୍ରିୟ କରିପାରିବେ ନାହିଁ: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "ଅସନ୍ତୁଳିତ ଆହରଣକୁ ନିଷ୍କ୍ରିୟ କରିପାରିବେ ନାହିଁ, ଫଳାଫଳ ହୁଏତଃ artifacts ଧାରଣ " - "କରିଥାଇପାରେ!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr " {0}: {1} କୁ ସେଟ କରିପାରିବେ ନାହିଁ, ନିଷ୍କ୍ରିୟ କରୁଅଛି" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "ଅଧିତଥ୍ୟ ପାଇବାରେ ତ୍ରୁଟି: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "ଫାଇଲ ତାଲିକା ପାଇବାରେ ତ୍ରୁଟି: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "ଫାଇଲ '{0}' କୁ ନକଲ କରିପାରିବେ ନାହିଁ: {1}" -@@ -398,7 +402,7 @@ msgstr "ଘଟଣାଗୁଡିକ" - msgid "C_onfigure" - msgstr "ବିନ୍ୟାସ କରନ୍ତୁ (_o)" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "ବନ୍ଦ କରନ୍ତୁ (_C)" - -@@ -424,7 +428,7 @@ msgstr "ଗୁପ୍ତ ସେବା ଉପଲବ୍ଧ ନାହିଁ, ଆପ - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "ବାତିଲ କରନ୍ତୁ (_C)" - -@@ -510,7 +514,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "ବୈକଳ୍ପିକ GUI ଫାଇଲ" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -519,15 +523,15 @@ msgstr "" - "ଲିଖନଯୋଗ୍ୟ ଡିରେକ୍ଟୋରୀ ଆବଶ୍ୟକ, କିନ୍ତୁ '%s' ଲିଖନଯୋଗ୍ୟ ନୁହଁ। ଏହାକୁ '%s' କୁ " - "ସ୍ଥାନାନ୍ତରିତ କରନ୍ତୁ ଏବଂସ୍ଥାନାନ୍ତରିତ ତଥ୍ୟ ଉପରେ ଚଲାନ୍ତୁ?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "ପାଠ୍ୟ ଫାଇଲକୁ ଦେଖନ୍ତୁ/ସମ୍ପାଦନ କରନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "ସଂରକ୍ଷଣ କରନ୍ତୁ (_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -535,39 +539,39 @@ msgstr "" - "ଏହି ସମସ୍ୟା ପାଇଁ କୌଣସି ଖବର ଲକ୍ଷ୍ଯସ୍ଥଳ ବର୍ଣ୍ଣନା କରାଯାଇ ନାହିଁ। /etc/libreport/* " - "ରେ ସଂରଚନାକୁ ଯାଞ୍ଚ କରନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(ଆବଶ୍ୟକ: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(ଆବଶ୍ୟକ ନାହିଁ, ତଥ୍ୟ ପୂର୍ବରୁ ଅବସ୍ଥିତ: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(ଦେଖିବା/ସମ୍ପାଦନ କରିବା ପାଇଁ ଏଠାରେ କ୍ଲିକ କରନ୍ତୁ)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(ଦ୍ୱମିକ ଫାଇଲ, %llu ବାଇଟ)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(କୌଣସି ବର୍ଣ୍ଣନା ନାହିଁ)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu ବାଇଟ, %u ଫାଇଲଗୁଡ଼ିକ" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "କାର୍ଯ୍ୟକ୍ରମକୁ ବାତିଲ କରାଯାଇଛି" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -576,7 +580,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -584,7 +588,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -596,78 +600,51 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "କାର୍ଯ୍ୟକ୍ରମଟି ବାଧାପ୍ରାପ୍ତ ହୋଇଥିଲା କାରଣ ସେହି ସମସ୍ୟାଟି ଖବର କରିବା ଯୋଗ୍ୟ ନୁହଁ।" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "ପ୍ରକ୍ରିୟା ବିଫଳ ହୋଇଛି।" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "ପ୍ରକ୍ରିୟା ସମାପ୍ତ ହୋଇଛି।" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "ପ୍ରକ୍ରିୟା ସମାପ୍ତ ହୋଇଛି, ଦୟାକରି ପରବର୍ତ୍ତୀ ପଦକ୍ଷେପ ସହିତ ଆଗକୁ ବଢ଼ନ୍ତୁ।" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "ନାଁ '%s' ପାଇଁ ସଞ୍ଚାଳନକୁ ବ୍ୟାଖ୍ୟା କରାଯାଇଛି" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "ପ୍ରକ୍ରିୟା ବାଧାପ୍ରାପ୍ତ ହୋଇଛି: ଲିଖନଯୋଗ୍ୟ ଡିରେକ୍ଟୋରୀ ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ " - "ନାହିଁ।" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "କାର୍ଯ୍ୟକାରୀ କରୁଅଛି..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "ଅବୈଧ ଘଟଣା ନାମ ହେତୁ ବ୍ୟାକଟ୍ରେସ ମାନ୍ୟତାକୁ ଯାଞ୍ଚ କରିପାରିବେ ନାହିଁ" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -676,99 +653,107 @@ msgstr "" - "ଘଟଣା '%s' ସମ୍ଭାବ୍ୟ ଜରୁରୀ ତଥ୍ୟ ପଠାଇବା ପାଇଁ ଅନୁମତି ଆବଶ୍ୟକ କରିଥାଏ।\n" - "ଆପଣ ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "ଏହି ସମସ୍ୟାକୁ ଖବର କରିବା ଉଚିତ ନୁହଁ (ଏହା ଏକ ଜଣା ସମସ୍ୟା ପରି ଲାଗୁଛି)। %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "ଖୋଲନ୍ତୁ (_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' ଟି ଗୋଟିଏ ସାଧାରଣ ଫାଇଲ ନୁହଁ" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "ଆପଣ କୌଣସି ଏକ ଫାଇଲକୁ ସେଥିରେ ନକଲ କରିବାକୁ ଚେଷ୍ଟା କରୁଛନ୍ତି" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' କୁ ନକଲ କରିପାରିବେ ନାହିଁ: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "'%s' ବସ୍ତୁ ପୂର୍ବରୁ ଅଛି ଏବଂ ପରିବର୍ତ୍ତନଯୋଗ୍ୟ ନୁହଁ" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "ଅନ୍ତର୍ଭୁକ୍ତ କରନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "ନାମ" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "ମୂଲ୍ୟ" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "ସମସ୍ୟା ବର୍ଣ୍ଣନା" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "ଏହି ସମସ୍ୟାକୁ କିପରି ଖବର କରିବେ ବାଛନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "ଅତିରିକ୍ତ ସୂଚନା ପ୍ରଦାନ କରନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "ତଥ୍ୟକୁ ସମୀକ୍ଷା କରନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "ବିବରଣୀରେ ତଥ୍ୟକୁ ନିଶ୍ଚିତ କରନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "କାର୍ଯ୍ୟକାରୀ କରୁଅଛି" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "ପ୍ରକ୍ରିୟା ସମାପ୍ତ ହୋଇଛି" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "ଅଟକାନ୍ତୁ (_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "ବିଶ୍ଳେଷଣ ପାଇଁ ଧାରଣ କରନ୍ତୁ" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "ଆଗକୁ (_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "ବିସ୍ତୃତ ବିବରଣୀ" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "ଏହି ବିବରଣୀ ପାଇଁ ପ୍ରବେଶାନୁମତିକୁ ସିମୀତ କରନ୍ତୁ" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -819,26 +804,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "ଏହି ବିବରଣୀ ପାଇଁ ପ୍ରବେଶାନୁମତିକୁ ସିମୀତ କରନ୍ତୁ" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "ପ୍ରତିରୋଧିତ ଅଭିଗମ୍ୟତା ସହିତ ଏହି ବିବରଣୀ ବିଷୟରେ ଅଧିକ ପଢ଼ନ୍ତୁ" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -850,7 +815,7 @@ msgstr "" - "ସମସ୍ୟାକୁ ଖବର କରାଯିବ ତାହା ବାଛିବା ପାଇଁ। ଆଗକୁ ବଢ଼ିବା ପାଇଁ 'ଅଗ୍ରସର କରନ୍ତୁ' କୁ " - "କ୍ଲିକ କରନ୍ତୁ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -860,12 +825,12 @@ msgstr "" - "ସମସ୍ୟାକୁ ବିଶ୍ଳେଷଣ କରିବା ପାଇଁ କୌଣସି ଅତିରିକ୍ତ ଟିପ୍ପଣୀ? ଯଦି ସମ୍ଭବ ଇଂରାଜୀ " - "ବ୍ୟବହାର କରନ୍ତୁ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - "ଅଗ୍ରସର ହେବା ପୂର୍ବରୁ ଆପଣଙ୍କୁ \"ଏହାକୁ କିପରି କରିବେ\" କୁ ପୁରଣ କରିବା ଆବଶ୍ୟକ..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -873,31 +838,31 @@ msgstr "" - "ଆପଣଙ୍କର ମନ୍ତବ୍ୟ ବ୍ୟକ୍ତିଗତ ନୁହଁ। ସେମାନେ ସର୍ବସାଧାରଣରେ ଦୃଶ୍ୟମାନ ସମସ୍ୟା " - "ବିବରଣୀରେ ଅନ୍ତର୍ଭୁକ୍ତ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "ଏହାକୁ କିପରି ବର୍ଣ୍ଣନା କରିବାକୁ ହେବ, ଯଦି ଆପଣ ତାହା ଜାଣି ନାହାନ୍ତି" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "ଏକ ସ୍କ୍ରିନକାଷ୍ଟକୁ ଯୋଗ କରନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "ଏହା କିପରି ହେଲା ମୁଁ ଜାଣି ନାହିଁ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "ଆକାର:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ଗୋଟିଏ ଫାଇଲ ସଂଯୁକ୍ତ କରନ୍ତୁ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "ମୁଁ ଏହି ତଥ୍ୟକୁ ସମୀକ୍ଷା କରିଛି ଏବଂ ଏହାକୁ ଦାଖଲ କରିବା ପାଇଁ ସହମତ ଅଛି ( _a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -908,19 +873,19 @@ msgstr "" - "ବ୍ୟାକଟ୍ରେସ, ନିର୍ଦ୍ଦେଶନାମା, ପରିବେଶ ପ୍ରାଚଳଗୁଡ଼ିକ ହେଉଛି ନିରୀକ୍ଷଣ ପାଇଁ ସାଧାରଣ " - "ବସ୍ତୁ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "କାର୍ଯ୍ୟ ଏପର୍ଯ୍ୟନ୍ତ ଆରମ୍ଭ ହୋଇନାହିଁ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "ଲଗ ଦେଖାଅ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "ଖବର ଦାଖଲ ହୋଇସାରିଛି। ଆପଣ ବର୍ତ୍ତମାନ ଏହି ୱିଣ୍ଡୋକୁ ବନ୍ଦ କରିପାରିବେ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -930,16 +895,15 @@ msgstr "" - "ଅତିରିକ୍ତ ସୂଚନା ସଂଗ୍ରହ କରନ୍ତୁ, ଅଥବା ଗୋଟିଏ ଉନ୍ନତ ସମସ୍ୟା ବର୍ଣ୍ଣନା ପ୍ରଦାନ କରନ୍ତୁ " - "ଏବଂ ଖବର କରିବାର ପଦ୍ଧତିକୁ ପୁଣିଥରେ କରନ୍ତୁ, ଏବଂ 'ଅଗ୍ରସର କରନ୍ତୁ' କୁ ଦବାନ୍ତୁ।" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "ଶବ୍ଦାଡ଼ମ୍ବରପୂର୍ଣ୍ଣ ହୁଅନ୍ତୁ" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ" - -@@ -965,78 +929,119 @@ msgstr "ଏହା ଏକ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନ - msgid "Can't delete '%s': %s" - msgstr "'%s' କୁ ଅପସାରଣ କରିପାରିବେ ନାହିଁ: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "ଆବଶ୍ୟକୀୟ ବସ୍ତୁ ନାହିଁ: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid ମୂଲ୍ୟଟି ବୈଧ ନୁହଁ: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "ଆବଶ୍ୟକୀୟ ବସ୍ତୁ ନାହିଁ: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "ଧାରଣ ହୋଇଛି: %llu ର %llu କିଲୋବାଇଟ" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s କୁ %s ପାଖକୁ ପଠାଉଛି" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s କୁ %s ପାଖକୁ ସଫଳତାର ସହିତ ପଠାସରିଛି" -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "ଅନୁପସ୍ଥିତ ଆବଶ୍ୟକ ମୂଲ୍ୟ" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "ଅବୈଧ utf8 ବର୍ଣ୍ଣ '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "ଅବୈଧ ସଂଖ୍ୟା '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "ଅବୈଧ ବୁଲିଆନ ମୂଲ୍ୟ '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "ଅସମର୍ଥିତ ବିକଳ୍ପ ପ୍ରକାର" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1045,11 +1050,11 @@ msgstr "" - "ଏକ ଅବୈଧ ତଥ୍ୟ ହେତୁ ଏହି ସମସ୍ୟାକୁ ଖବର କରାଯାଇ ପାରିବ ନାହିଁ। '%s' ଫାଇଲ କୌଣସି " - "ସଂଖ୍ୟା ଧାରଣ କରିନଥାଏ।" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "ଦୟାକରି ଏହି ତ୍ରୁଟିକୁ ABRT ପ୍ରକଳ୍ପ ବିକାଶକାରୀଙ୍କ ପାଖରେ ଖବର କରନ୍ତୁ।" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1057,17 +1062,17 @@ msgstr "" - "ବ୍ୟାକଟ୍ରେସଟି ସମ୍ପୂର୍ଣ୍ଣ ହୋଇନାହିଁ, ଦୟାକରି ନିଶ୍ଚିତ କରନ୍ତୁ ଯେ ଆପଣ ପୁନଃ ଉତ୍ପାଦନ " - "କରିବା ପାଇଁ ଉତ୍ତମ ପଦକ୍ଷେପ ପ୍ରଦାନ କରିଛନ୍ତି।" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "ବ୍ୟାକଟ୍ରେସ ସମ୍ଭବତଃ ଏକ ବିକାଶକାରୀଙ୍କୁ ତ୍ରୁଟି ସନ୍ଧାନରେ ସହାୟତା କରିନଥାଏ।" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "" - "ଖବର କରିବା ପଦ୍ଧତିକୁ ନିଷ୍କ୍ରିୟ କରାଯାଇଛି, ଉପରେ ଦର୍ଶାଯାଇଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ " - "ଦୟାକରି ସମାଧାନ କରନ୍ତୁ।" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1076,12 +1081,27 @@ msgstr "" - "ଦୟାକରି ଏହି ନିର୍ଦ୍ଦେଶକୁ ବ୍ୟବହାର କରି ତ୍ରୁଟି ନିବାରଣ ସୂଚନାକୁ ହସ୍ତକୃତ ଭାବରେ " - "ସ୍ଥାପନ କରନ୍ତୁ: \"debuginfo-install %s\" ଏବଂ ପୁଣିଥରେ ଚେଷ୍ଟା କରନ୍ତୁ।" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "ଏକ ସଠିକ ତ୍ରୁଟିନିବାରଣ ସୂଚନା ସମ୍ଭବତଃ ନାହିଁ ଅଥବା coredump ଟି ଖରାପ ହୋଇଯାଇଛି।" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1090,27 +1110,37 @@ msgstr "ଆପଣଙ୍କର ସମସ୍ୟା %s ଦ୍ୱାରା ଘଟି - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "ଆପଣଙ୍କର ସମସ୍ୟା ନିମ୍ନଲିଖିତ ମଧ୍ଯରୁ କାହା ଦ୍ୱାରା ଘଟିଥାଇପାରେ:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "uReport କୁ ସର୍ଭର '%s' ରେ curl ସହିତ ଧାରଣ କରିବାରେ ବିଫଳ: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' ଅବସ୍ଥିତ ନାହିଁ (ସର୍ଭରରୁ 404 ତୃଟି ପାଇଲା)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - "'%s' ରେ ଥିବା ସର୍ଭର ଏକ ଆଭ୍ୟନ୍ତରୀଣ ତୃଟିର ସମ୍ମୁଖିନ ହୋଇଛି (ତୃଟି 500 ପାଇଛି)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" -@@ -1118,33 +1148,33 @@ msgstr "" - "503 ପାଇଛି)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s' ରୁ ଅପ୍ରତ୍ୟାଶିତ HTTP ଉତ୍ତର: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "'%s' ରେ ureport ସର୍ଭରରୁ ଉତ୍ତର ବିଶ୍ଳେଷଣ କରିବାରେ ଅସମର୍ଥ" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' ରୁ ପାଇଥିବା ଉତ୍ତରଟି ଅବୈଧ ଶୈଳୀରେ ଅଛି" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "'%s' ରୁ ମିଳିଥିବା ଉତ୍ତରରେ ପ୍ରକାର ଅମେଳକୁ ଚିହ୍ନଟ ହୋଇଛି" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "ସମସ୍ୟାକୁ ଦାଖଲ କରିବାରେ ବିଫଳ" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "'%s' ରେ ଥିବା ସର୍ଭର ଏକ ତୃଟି ସହିତ ଉତ୍ତର ଦେଇଛି: '%s'" -@@ -1175,21 +1205,34 @@ msgstr "ବ୍ୟାକଟ୍ରେସକୁ ବିଶ୍ଳେଷଣ କରି - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "ଷ୍ଟାକ ଟ୍ରେସ ବର୍ଣ୍ଣନାକୁ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ (କ୍ରାସ ଥ୍ରେଡ ନାହିଁ କି?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' ଟି ସଂକେତ %u ଦ୍ୱାରା ବନ୍ଦ ହୋଇଛି)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' ସଫଳତାର ସହିତ ସମ୍ପୂର୍ଣ୍ଣ ହୋଇଛି)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' ଟି %u ସହିତ ପ୍ରସ୍ଥାନ କରୁଛି)\n" -@@ -1275,32 +1318,57 @@ msgid "Bugzilla account password" - msgstr "Bugzilla ଖାତା ପ୍ରବେଶ ସଂକେତ" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "ପ୍ରବେଶାନୁମତିକୁ ପ୍ରତିରୋଧ କରନ୍ତୁ" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"ନିର୍ମିତ bugzilla ଟିକଟ ପାଇଁ ଅଭିଗମ୍ୟତାକୁ ବାରଣ କରିଥାଏ, କେବଳ କିଛି ନିର୍ଦ୍ଦିଷ୍ଟ " -+"ଶ୍ରେଣୀର ବ୍ୟବହାରକାରୀମାନଙ୍କୁ ଦେଖିବା ପାଇଁ ଅନୁମତି ଦେଇଥାଏ (ଅଧିକ ବିବରଣୀ ପାଇଁ ଉନ୍ନତ " -+"ସଂରଚନାକୁ ଦେଖନ୍ତୁ)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "ସମୂହଗୁଡିକ" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"ବିଶେଷ ଶ୍ରେଣୀଗୁଡ଼ିକୁ ପ୍ରବେଶାନୁମତି ଦିଅନ୍ତୁ ନାହିଁ <a href=\"https://github." -+"com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla ସର୍ଭରର ଠିକଣା" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL କୁ ଯାଞ୍ଚ କରନ୍ତୁ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL କି ବୈଧତାକୁ ଯାଞ୍ଚ କରନ୍ତୁ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla ଉତ୍ପାଦନ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1308,11 +1376,11 @@ msgstr "" - "କେବଳ ଏହାକୁ ଉଲ୍ଲେଖ କରନ୍ତୁ ଯଦି ଆପଣ /etc/os-release ରେ ଉଲ୍ଲିଖିତ ଠାରୁ ଭିନ୍ନ " - "ଉତ୍ପାଦନ ଆବଶ୍ୟକ କରନ୍ତି" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla ଉତ୍ପାଦନ ସଂସ୍କରଣ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1320,8 +1388,8 @@ msgstr "" - "କେବଳ ଏହାକୁ ଉଲ୍ଲେଖ କରନ୍ତୁ ଯଦି ଆପଣ /etc/os-release ରେ ଉଲ୍ଲିଖିତ ଠାରୁ ଭିନ୍ନ " - "ଉତ୍ପାଦନ ସଂସ୍କରଣ ଆବଶ୍ୟକ କରନ୍ତି" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1330,8 +1398,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP ପ୍ରକ୍ସି" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1340,8 +1408,8 @@ msgstr "HTTP ପ୍ରକ୍ସି" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTP ପାଇଁ ବ୍ୟବହାର କରିବାକୁ ପ୍ରୋକ୍ସି ସର୍ଭର ସେଟ କରିଥାଏ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1350,8 +1418,8 @@ msgstr "HTTP ପାଇଁ ବ୍ୟବହାର କରିବାକୁ ପ୍ର - msgid "HTTPS Proxy" - msgstr "HTTPS ପ୍ରୋକ୍ସି" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1360,32 +1428,6 @@ msgstr "HTTPS ପ୍ରୋକ୍ସି" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS ପାଇଁ ବ୍ୟବହାର କରିବାକୁ ପ୍ରୋକ୍ସି ସର୍ଭର ସେଟ କରିଥାଏ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "ପ୍ରବେଶାନୁମତିକୁ ପ୍ରତିରୋଧ କରନ୍ତୁ" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"ନିର୍ମିତ bugzilla ଟିକଟ ପାଇଁ ଅଭିଗମ୍ୟତାକୁ ବାରଣ କରିଥାଏ, କେବଳ କିଛି ନିର୍ଦ୍ଦିଷ୍ଟ " --"ଶ୍ରେଣୀର ବ୍ୟବହାରକାରୀମାନଙ୍କୁ ଦେଖିବା ପାଇଁ ଅନୁମତି ଦେଇଥାଏ (ଅଧିକ ବିବରଣୀ ପାଇଁ ଉନ୍ନତ " --"ସଂରଚନାକୁ ଦେଖନ୍ତୁ)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "ସମୂହଗୁଡିକ" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"ବିଶେଷ ଶ୍ରେଣୀଗୁଡ଼ିକୁ ପ୍ରବେଶାନୁମତି ଦିଅନ୍ତୁ ନାହିଁ <a href=\"https://github." --"com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1425,13 +1467,13 @@ msgstr "" - "ହୋଇଛି, env ପ୍ରାଚଳ ଏବଂ ସଂରଚନାକୁ ଅଗ୍ରାହ୍ୟ କରି" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "ବିନା ଲଗଇନରେ ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "ପ୍ରବେଶ ସଂକେତ ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ" -@@ -1443,10 +1485,10 @@ msgstr "%s ରେ Bugzilla ମଧ୍ଯରେ ଲଗଇନ କରୁଅଛି" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "ଅବୈଧ ପ୍ରବେଶ ସଂକେତ କିମ୍ବା ଲଗଇନ। ଦୟାକରି ଆପଣଙ୍କର Bugzilla ଲଗଇନ ଭରଣ କରନ୍ତୁ:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "ଅବୈଧ ପ୍ରବେଶ ସଂକେତ କିମ୍ବା ଲଗଇନ। ଦୟାକରି '%s' ର ପ୍ରବେଶ ସଂକେତ ଭରଣ କରନ୍ତୁ:" -@@ -1461,7 +1503,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1495,117 +1537,89 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"\\n\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d \n" --"DIR\\n\n" --"or:\\n\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\\n\n" --"or:\\n\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\\n\n" --"or:\\n\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\\n\n" --"\\n\n" --"ସମସ୍ୟାକୁ Bugzilla ରେ ଖବର କରିଥାଏ।\\n\n" --"\\n\n" --"ସାଧନଟି DIR କୁ ପଢ଼ିଥାଏ। ତାପରେ ଏହା Bugzilla ରେ ଲଗଇନ କରିଥାଏ ଏବଂ\\n\n" --"ସମାନ abrt_hash:HEXSTRING କୁ 'Whiteboard' ରେ ତ୍ରୁଟି ସନ୍ଧାନ ପାଇଁ ଚେଷ୍ଟା " --"କରିଥାଏ।\\n\n" --"\\n\n" --"ଯଦି ଏପରି କୌଣସି ତ୍ରୁଟି ନମିଳେ, ତେବେ ନୂତନ ଏକ ତ୍ରୁଟି ନିର୍ମାଣ ହୋଇଥାଏ। DIR ର " --"ଉପାଦାନଗୁଡ଼ିକ\\n\n" --"ତ୍ରୁଟିରେ ତ୍ରୁଟି ବିବରଣୀ ଭାବରେ ଅଥବା ସଂଲଗ୍ନକ ଭାବରେ ସଂରକ୍ଷିତ ହୋଇଥାଏ,\\n\n" --"ସେମାନଙ୍କର ପ୍ରକାର ଏବଂ ଆକାର ଉପରେ ନିର୍ଭର କରି।\\n\n" --"\\n\n" --"ଅନ୍ୟଥା, ଯଦି ଏପରି କୌଣସି ତ୍ରୁଟି ମିଳେ ଏବଂ ତାହା CLOSED DUPLICATE ଭାବରେ ଚିହ୍ନଟ " --"ହୋଇଥାଏ,\\n\n" --"ତେବେ ସେହି ସାଧନଟି ନକଲି ବିବରଣୀଗୁଡ଼ିକୁ ଖୋଜିଥାଏ ଯେପର୍ଯ୍ୟନ୍ତ ତାହା non-DUPLICATE " --"ତ୍ରୁଟି ନପାଇଥାଏ।\\n\n" --"ମିଳିଥିବା ତ୍ରୁଟିରେ ଏହି ସାଧନଟି ଏକ ନୂତନ ଟିପ୍ପଣୀ ଯୋଗ କରିଥାଏ।\\n\n" --"\\n\n" --"ନୂତନ କିମ୍ବା ପରିବର୍ତ୍ତିତ ତ୍ରୁଟିରେ stdout ରେ URL ମୁଦ୍ରିତ ହୋଇଥାଏ ଏବଂ \\n\n" --"'reported_to' ଉପାଦାନରେ ଲିପିବଦ୍ଧ ହୋଇଥାଏ।\\n\n" --"\\n\n" --"ବିକଳ୍ପ -t ଫାଇଲଗୁଡ଼ିକୁ Bugzilla ସାଇଟରେ ପୂର୍ବରୁ ନିର୍ମିତ ତ୍ରୁଟିରେ ଧାରଣ " --"କରିଥାଏ।\\n\n" --"ତ୍ରୁଟି ID ଟି -d DIR ରେ ଉଲ୍ଲିଖିତ ଡିରେକ୍ଟୋରୀରୁ କଢ଼ାଯାଇଥାଏ।\\n\n" --"DIR ରେ ଯଦି ସମସ୍ୟା ତଥ୍ୟକୁ କଦାପି Bugzilla ରେ ଖବର କରାନଯାଏ, ତେବେ ଧାରଣ କ୍ରିୟା " --"ବିଫଳ ହେବ।\\n\n" --"\\n\n" --"ବିକଳ୍ପ -tID ଫାଇଲଗୁଡ଼ିକୁ Bugzilla ସାଇଟରୁ ଉଲ୍ଲିଖିତ ID ସହିତ ଧାରଣ କରିଥାଏ।\\n\n" --"-d DIR କୁ ଗ୍ରହଣ କରାଯାଇନଥାଏ।\\n\n" --"\\n\n" --"ବିକଳ୍ପ -r ଅନ୍ତିମ url କୁ reporter_to element କୁ ସେଟ କରିଥାଏ ଯାହାକି\\n\n" --"TRACKER_NAME କୁ URL ସ୍ଥାନରେ ଉପସର୍ଗ ଭାବରେ ରଖାଯାଇଥାଏ। ନୂତନ ତୃଟି ଦାଖଲ କରିବା " --"ସମୟରେ ହିଁ ଏହି ବିକଳ୍ପକୁ \n" --"ପ୍ରୟୋଗ \\n\n" --"କରାଯାଇଥାଏ। ପୂର୍ବନିର୍ଦ୍ଧାରିତ ମୂଲ୍ୟଟି ହେଉଛି 'ABRT ସର୍ଭର'\\n\n" --"\\n\n" --"ଯଦି ଉଲ୍ଲେଖ କରାଯାଇନଥାଏ, ତେବେ ପୂର୍ବନିର୍ଦ୍ଧାରିତ CONFFILE " -- --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+ -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "ବିନ୍ଯାସ ଫାଇଲ (ହୁଏତଃ ଅନେକ ଥର ଦିଆଯାଇଛି)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "ପ୍ରାରମ୍ଭିକ ଟିପ୍ପଣୀ ପାଇଁ ଫାଇଲକୁ ସଜାଡ଼ୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "ନକଲିଗୁଡ଼ିକ ପାଇଁ ଫାଇଲକୁ ସଜାଡ଼ୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILE ଗୁଡ଼ିକୁ ସଂଲଗ୍ନ କରନ୍ତୁ [ଏହି ID ସହିତ ତ୍ରୁଟିକୁ]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "ତ୍ରୁଟି ଖବର କରିବା ସମୟରେ ଦ୍ୱିମୀକ ଫାଇଲକୁ ମଧ୍ଯ ସେଥିରେ ଲଗାନ୍ତୁ" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "ଏହି ସମସ୍ୟାକୁ ଖବର କରାଯାଇଥିଲେ ମଧ୍ଯ ପୁଣି ଖବର କରନ୍ତୁ" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "CC ତାଲିକାରେ bugzilla ବ୍ୟବହାରକାରୀଙ୍କୁ ଯୋଗକରନ୍ତୁ [ଏହି ID ସହିତ ତୃଟି]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "BUG_ID ମୁଦ୍ରଣ କରନ୍ତୁ ଯିଏକି DUPHASH ପ୍ରଦାନ କରିଛି" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "ଅତିରିକ୍ତ URL ପାଇଁ 'reported_to' ରୁ ତୃଟି ସନ୍ଧାନକାରୀର ଏକ ନାମ" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "କେବଳ ଏହି ଶ୍ରେଣୀ ପାଇଁ ପ୍ରବେଶାନୁମତିକୁ ସିମୀତ କରନ୍ତୁ" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "ତ୍ରୁଟିନିବାରଣ" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "bugzilla ରେ ଏହିପରି ସମସ୍ୟାଗୁଡ଼ିକୁ ଖୋଜୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" --msgstr "ସଂରଚନା ଦ୍ୱାରା ଲଗଇନ ଦିଆଯାଇ ନାହିଁ। ଦୟାକରି ଆପଣଙ୍କର Bugzilla ଲଗଇନ ନିବେଶ କରନ୍ତୁ:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1614,7 +1628,7 @@ msgstr "" - "ପ୍ରବେଶ ସଂକେତଟି ସଂରଚନା ଦ୍ୱାରା ଦିଆଯାଇ ନାହିଁ। ଦୟାକରି '%s' ପାଇଁ ପ୍ରବେଶ ସଂକେତ ଭରଣ " - "କରନ୍ତୁ:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1622,7 +1636,7 @@ msgstr "" - "Bugzilla ID ପାଇ ପାରିବେ ନାହିଁ କାରଣ ଏହି ସମସ୍ୟାକୁ ଏପର୍ଯ୍ୟନ୍ତ Bugzilla ରେ ଖବର " - "କରାଯାଇ ନାହିଁ।" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1631,75 +1645,97 @@ msgstr "" - "ଏହି ସମସ୍ୟାକୁ Bugzilla '%s' ରେ ଖବର କରାଯାଇଛି ଯାହାକି ବିନ୍ୟାସିତ Bugzilla '%s' ରୁ " - "ପୃଥକ ହୋଇଥାଏ।" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Bugzilla '%s' ରେ ତୃଟିଯୁକ୍ତ url." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID '%s' ବ୍ୟବହାର କରୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "ଲଗଆଉଟ କରୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "ସମସ୍ୟା ତଥ୍ୟରୁ Bugzilla ଉତ୍ପାଦନ ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ।" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "ନକଲିଗୁଡ଼ିକ ପାଇଁ ଯାଞ୍ଚକରୁଅଛି" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "ଗୋଟିଏ ନୂତନ ତ୍ରୁଟି ବିବରଣୀ ନିର୍ମାଣ କରୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "ଏକ ନୂତନ ତୃଟି ପ୍ରସ୍ତୁତ କରିବାରେ ବିଫଳ।" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "ବାହ୍ଯ URL କୁ ତୃଟି %i ରେ ଯୋଗ କରୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "ତ୍ରୁଟି %i ସହିତ ସଂଲଗ୍ନକକୁ ଯୋଗ କରୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "ତ୍ରୁଟିକୁ ପୂର୍ବରୁ ଖବର କରାସରିଛି: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s କୁ CC ତାଲିକାରେ ଯୋଗ କରନ୍ତୁ" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "ତ୍ରୁଟି %d ରେ ନୂତନ ଟିପ୍ପଣୀ ଯୋଗକରୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "ଉତ୍ତମ ବ୍ୟାକଟ୍ରେସ ସଂଲଗ୍ନ କରୁଅଛି" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "ତ୍ରୁଟି ପୁରୁଣା ତଥ୍ୟରେ ସମାନ ଟିପ୍ପଣୀ ମିଳିଲା, ନୂଆ କିଛି ଯୋଗ କରୁନାହିଁ" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "ସ୍ଥିତି: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1734,7 +1770,7 @@ msgstr "" - "ପ୍ରାଚଳକୁ $KerneloopsReporter_SubmitURL ମାଧ୍ଯମରେ ନବଲିଖନ କରାଯାଇଥାଏ।" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "ବିନ୍ଯାସ ଫାଇଲ" - -@@ -1766,12 +1802,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ଗୋଟିଏ ଇ-ମେଲ ପଠାଉଛି..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "ଏଠାକୁ ଇମେଲ ପଠାଯାଇଛି: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1785,11 +1821,11 @@ msgstr "" - "\n" - "ଯଦି ଉଲ୍ଲେଖ କରାଯାଇନଥାଏ, ତେବେ CONFFILE କୁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ କରାଯାଇଥାଏ" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "ବିନ୍ୟାସ ଫାଇଲ" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "କେବଳ ସୂଚନା ଦିଅନ୍ତୁ (ବିବରଣୀକୁ ପଠାଯାଇଛି ବୋଲି ଚିହ୍ନଟ କରନ୍ତୁ ନାହିଁ)" - -@@ -1824,34 +1860,34 @@ msgstr "ଚାଳକ ଦ୍ୱାରା ବାତିଲ ହୋଇଛି।" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "ଲେଖିବା ପାଇଁ '%s' କୁ ଖୋଲିପାରିବେ ନାହିଁ। ଦୟାକରି ଅନ୍ୟ ଏକ ଫାଇଲ ବାଛନ୍ତୁ:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "ବିବରଣୀକୁ %s ରେ ଯୋଡ଼ାଯାଇଥାଏ" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "ବିବରଣୀକୁ %s ରେ ସଜଡ଼ା ଯାଇଥାଏ" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "ସର୍ଭର ଏକ ତୃଟି ସହିତ ଉତ୍ତର ଦେଉଅଛି: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "ଆପଣ ବର୍ତ୍ତମାନ RHTSupport ଟିକଟକୁ ସୃଷ୍ଟି କରିବାକୁ ଚାହୁଁଛ କି?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1860,78 +1896,82 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILE ଗୁଡ଼ିକୁ ଧାରଣ କରିଥାଏ [ଏହି ID ସହିତ ସଂଲଗ୍ନ ହେବା ପାଇଁ]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "ସଂରଚନା ଦ୍ୱାରା ଲଗଇନ ଦିଆଯାଇ ନାହିଁ। ଦୟାକରି ଆପଣଙ୍କର RHTS ଲଗଇନ ନିବେଶ କରନ୍ତୁ:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' ରେ ପରିସ୍ଥିତି '%s' କୁ ସଂଲଗ୍ନ କରୁଅଛି" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "ଅସ୍ଥାୟୀ ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରିପାରିବେ ନାହିଁ" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "ତଥ୍ଯକୁ ସଙ୍କୋଚନ କରାଯାଉଛି" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "ଅସ୍ଥାୟୀ ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରିପାରିବେ ନାହିଁ" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "ଅସ୍ଥାୟୀ ଫାଇଲ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "ସୂଚନା ପାଇଁ ଯାଞ୍ଚ କରୁଅଛି" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "ଗୋଟିଏ ନୂଆ ପରିସ୍ଥିତି ସୃଷ୍ଟିକରୁଛି" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "ସମସ୍ୟା ତଥ୍ୟରୁ RH ଉତ୍ପାଦନ ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ।" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "ପରିସ୍ଥିତି'%s' ରେ ମନ୍ତବ୍ୟ ଯୋଗ କରୁଅଛି" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "ପରିସ୍ଥିତି '%s' ରେ ସମସ୍ୟା ତଥ୍ୟ ଯୋଡ଼ୁଅଛି" -@@ -1944,45 +1984,49 @@ msgstr "ସମ୍ପୃକ୍ତ ଦଲିଲିକରଣ: " - msgid "Updates which possibly help: " - msgstr "ଅଦ୍ୟତନଗୁଡ଼ିକ ଯାହାକି ସମ୍ଭବତଃ ସହାୟତା କରିପାରେ: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "URL ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "ଅଭିଲେଖ ନିର୍ମିତ ହୋଇଛି: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ର ସଙ୍କୋଚିତ ଟାରବଲକୁ URL ରେ ଧାରଣ କରିଥାଏ ।\n" --"ଯଦି URL ଉଲ୍ଲେଖ ହୋଇନଥାଏ, ତେବେ ଏଥିରେ ଟାରବଲ ପ୍ରସ୍ତୁତ କରନ୍ତୁ" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "ଆଧାର URL କୁ ଏଥିରେ ଧାରଣ କରନ୍ତୁ" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1999,7 +2043,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2042,48 +2086,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2091,47 +2135,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2167,39 +2211,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2365,6 +2412,22 @@ msgstr "FTP ପ୍ରୋକ୍ସି" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP ରେ ବ୍ୟବହାର କରିବା ପାଇଁ ପ୍ରୋକ୍ସି ସର୍ଭର ସେଟ କରିଥାଏ" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2430,7 +2493,7 @@ msgstr "ତ୍ରୁଟି %i ଟି CLOSED, କିନ୍ତୁ ଏଥିରେ - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "ତ୍ରୁଟି %i ଟି ନକଲି ଭାବରେ ବନ୍ଦ ହୋଇଛି, କିନ୍ତୁ ଏହାର କୌଣସି DUP_ID ନାହିଁ" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2440,17 +2503,17 @@ msgstr "" - "କରାଯାଇ ନଥିଲା, ଅଧିକ ସୂଚନା ପାଇଁ ଦୟାକରି https://github.com/abrt/abrt/wiki/" - "FAQ#creating-private-bugzilla-tickets କୁ ଦେଖନ୍ତୁ" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "ନୂତନ ତ୍ରୁଟି id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla ତ୍ରୁଟି %d ର ମୂଳକୁ ଖୋଜି ପାଉନାହିଁ" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Bug.search(ଶିଘ୍ର ଖୋଜିବା) ରୁ ମିଳିଥିବା ମୂଲ୍ୟରେ ସଦସ୍ୟ 'bugs' ଧାରଣ ହୋଇନଥିଲା" -@@ -2644,39 +2707,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "ସର୍ଭର URL ଉଲ୍ଲେଖ କରନ୍ତୁ" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "ureport ସର୍ଭରରେ ଅସୁରକ୍ଷିତ ସଂଯୋଗକୁ ଅନୁମତି ଦିଅନ୍ତୁ" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "କ୍ଲାଏଣ୍ଟ ବୈଧିକରଣ ବ୍ୟବହାର କରନ୍ତୁ" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "ଲଗାଇବାକୁ ଥିବା uReport ର bthash ( -A ସହିତ ଦ୍ୱନ୍ଦ ସୃଷ୍ଟି କରିଥାଏ)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "reported_to ରୁ ଏକ bthash ରେ ସଂଲଗ୍ନ କରନ୍ତୁ ( -a ସହିତ ଦ୍ୱନ୍ଦ କରିଥାଏ)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "ଯୋଗାଯୋଗ ଇମେଲ ଠିକଣା (-a|-A ଆବଶ୍ୟକ କରିଥାଏ, -E ସହିତ ଦ୍ୱନ୍ଦ କରିଥାଏ)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2684,29 +2747,53 @@ msgstr "" - "ପରିବେଶରୁ ସମ୍ପର୍କ ଇମେଲ ଠିକଣା କିମ୍ବା ସଂରଚନା ଫାଇଲ ( -a|-A ଆବଶ୍ୟକ କରିଥାଏ, -e " - "ସହିତ ଦ୍ୱନ୍ଦ ସୃଷ୍ଟି କରିଥାଏ)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ ତୃଟି ଲଗାନ୍ତୁ (ଆବଶ୍ୟକ -a|-A, -B ସହିତ ଦ୍ୱନ୍ଦ)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "reported_to ରୁ ମିଳିଥିବା ଶେଷ RHBZ ତୃଟିକୁ ସଂଲଗ୍ନ କରନ୍ତୁ (-a|-A ଆବଶ୍ୟକ କରିଥାଏ, " - "-b ସହିତ ଦ୍ୱନ୍ଦ ସୃଷ୍ଟି କରିଥାଏ)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2715,33 +2802,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "ଏହି ସମସ୍ୟାରେ ନ୍ୟସ୍ତ ଥିବା uReport ନାହିଁ।" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "ଏହି ସମସ୍ୟାକୁ Bugzilla ରେ ଖବର କରାଯାଇ ନାହିଁ।" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "bugzilla URL '%s' ରେ ତୃଟି ID ଖୋଜିବାରେ ଅସମର୍ଥ" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "ତୃଟି ID କୁ bugzilla URL '%s' ରୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସମର୍ଥ" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2749,19 +2846,19 @@ msgstr "" - "ପରିବେଶ ପ୍ରାଚଳ 'uReport_ContactEmail' କିମ୍ବା ସଂରଚନା ବିକଳ୍ପ 'ContactEmail' କୁ " - "ସେଟ କରାଯାଇ ନାହିଁ" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "ଆପଣଙ୍କୁ ଯୋଡ଼ିବାକୁ ଥିବା uReport ର bthash କୁ ଉଲ୍ଲେଖ କରିବାକୁ ହେବ।" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "ଖାଲି uReport କୁ ଧାରଣ କରୁନାହିଁ" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "ଏହି ସମସ୍ୟାଟି ପୂର୍ବରୁ ଖବର କରାସରିଛି।" - -diff --git a/po/pa.po b/po/pa.po -index ff2055d..98da8c2 100644 ---- a/po/pa.po -+++ b/po/pa.po -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -21,7 +21,7 @@ msgstr "" - "libreport/language/pa/)\n" - "Language: pa\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -176,46 +176,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "cpio ਨੂੰ {0} ਤੋਂ ਖੋਲ ਰਿਹਾ ਹੈ" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}' ਵਿੱਚ ਲਿਖ ਨਹੀਂ ਸਕਦਾ: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "ਪੈਕੇਜ '{0}' ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕਦਾ" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{0} ਤੋਂ ਫਾਇਲਾਂ ਕੈਸ਼ ਕਰ ਰਿਹਾ ਹੈ ਜੋ {1} ਤੋਂ ਬਣੀਆਂ ਹਨ" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' ਤੋਂ ਫਾਇਲਾਂ ਨਹੀਂ ਲੈ ਸਕਦਾ" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਦਾ: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "({0} ਨੂੰ {1} ਵਿੱਚੋਂ) {2} ਨੂੰ ਡਾਊਨਲੋਡ ਕਰ ਰਿਹਾ ਹੈ: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -223,118 +220,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "ਲੋੜੀਂਦੇ ਪੈਕੇਜ ਲਈ ਰਿਪੋਜ਼ਟਰੀਆਂ ਵਿੱਚ ਵੇਖ ਰਿਹਾ ਹੈ" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} debuginfo ਫਾਇਲਾਂ ਲਈ ਪੈਕੇਜ ਨਹੀਂ ਲੱਭ ਸਕਦਾ" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਪੈਕੇਜ: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "{0:.2f}Mb ਡਾਊਨਲੋਡ ਕਰ ਰਿਹਾ ਹੈ, ਇੰਸਟਾਲ ਅਕਾਰ: {1:.2f}Mb। ਜਾਰੀ ਕਰਨਾ?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "ਯੂਜ਼ਰ ਦੁਆਰਾ ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਹੈ" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "ਪੈਕੇਜ {0} ਦਾ ਡਾਊਨਲੋਡ ਫੇਲ ਹੋਇਆ" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "ਅਨ-ਪੈਕੇਜਿੰਗ ਫੇਲ ਹੋਈ, ਡਾਊਨਲੋਡ ਅਧੂਰਾ ਛੱਡ ਰਿਹਾ ਹੈ..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ 0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum ਚਾਲੂ ਕਰਨ ਵੇਲੇ ਗਲਤੀ ਆਈ ਹੈ (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0} ਨੂੰ ਸੈੱਟਅੱਪ ਨਹੀਂ ਕਰ ਸਕਦਾ: {1}, ਅਯੋਗ ਕਰ ਰਿਹਾ ਹੈ" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "ਮੈਟਾਡਾਟਾ ਲੈਣ ਵੇਲੇ ਗਲਤੀ '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "ਫਾਇਲਲਿਸਟ ਲੈਣ ਵਿੱਚ ਗਲਤੀ: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -383,7 +387,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -409,7 +413,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -488,7 +492,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "ਬਦਲਵੀਂ GUI ਫਾਇਲ" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -497,53 +501,53 @@ msgstr "" - "ਲਿਖਣਯੋਗ ਡਾਇਰੈਕਟਰੀ ਦੀ ਲੋੜ ਹੈ, ਪਰ '%s' ਲਿਖਣਯੋਗ ਨਹੀਂ ਹੈ। ਇਸਨੂੰ '%s' ਤੇ ਲਿਜਾਓ " - "ਅਤੇ ਤਬਦੀਲ ਕੀਤੇ ਡਾਟੇ ਤੇ ਲਾਗੂ ਕਰੋ?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "ਪਾਠ ਫਾਇਲ ਵੇਖੋ/ਸੋਧੋ" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "ਵੇਖੋ/ਸੋਧ ਲਈ ਏਥੇ ਕਲਿੱਕ ਕਰੋ)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "ਬਾਇਨਰੀ ਫਾਇਲ, %llu ਬਾਈਟਾਂ)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(ਕੋਈ ਵੇਰਵਾ ਨਹੀਂ)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu ਬਾਈਟਾਂ, %u ਫਾਇਲਾਂ" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -552,7 +556,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -560,7 +564,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -572,174 +576,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "ਈਵੈਂਟ '%s' ਲਈ ਕੋਈ ਪਰੋਸੈੱਸਿੰਗ ਪਰਿਭਾਸ਼ਤ ਨਹੀਂ ਹੈ" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' ਇੱਕ ਸਧਾਰਨ ਫਾਇਲ ਨਹੀਂ ਹੈ" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "ਤੁਸੀਂ ਫਾਇਲ ਨੂੰ ਉਸੇ ਵਿੱਚ ਹੀ ਨਕਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਰਹੇ ਹੋ" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' ਦੀ ਨਕਲ ਨਹੀਂ ਕਰ ਸਕਦਾ: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "ਇਕਾਈ '%s' ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ ਅਤੇ ਸੋਧੀ ਨਹੀਂ ਜਾ ਸਕਦੀ" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "ਸ਼ਾਮਿਲ" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "ਨਾਂ" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "ਮੁੱਲ" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "ਸਮੱਸਿਆ ਵੇਰਵਾ" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "ਵਾਧੂ ਜਾਣਕਾਰੀ ਦਿਓ" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "ਡਾਟਾ ਜਾਂਚ ਕਰੋ" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "ਰਿਪੋਰਟ ਕਰਨ ਵਾਲੇ ਡਾਟੇ ਦੀ ਪੁਸ਼ਟੀ" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "ਵੇਰਵਾ" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -788,26 +773,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -817,7 +782,7 @@ msgstr "" - "ਲਈ ਚੁਣਨ ਵਾਸਤੇ (ਜੇ ਲੋੜ ਹੈ), ਇਕੱਠਾ ਕੀਤਾ ਡਾਟਾ ਵੇਖਣ ਲਈ, ਅਤੇ ਸਮੱਸਿਆ ਰਿਪੋਰਟ ਕਰਨ " - "ਬਾਰੇ ਚੁਣਨ ਲਈ। ਜਾਰੀ ਕਰਨ ਲਈ 'ਅੱਗੇ' ਦਬਾਓ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -826,11 +791,11 @@ msgstr "" - "ਇਹ ਸਮੱਸਿਆ ਕਿਵੇਂ ਆਈ (ਪਰ-ਦਰ-ਪਗ)? ਮੈਂ ਇਸਨੂੰ ਫਿਰ ਕਿਵੇਂ ਵੇਖਾਂ? ਸਮੱਸਿਆ ਜਾਂਚ ਲਈ ਹੋਰ " - "ਕੋਈ ਵਾਧੂ ਜਾਣਕਾਰੀ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "ਅੱਗੇ ਜਾਣ ਤੋਂ ਪਹਿਲਾਂ ਤੁਹਾਨੂੰ ਕਿਵੇਂ ਦਾ ਜਵਾਬ ਦੇਣਾ ਪਵੇਗਾ..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -838,31 +803,31 @@ msgstr "" - "ਤੁਹਾਡੇ ਹਿੱਸੇ ਪਰਾਈਵੇਟ ਨਹੀਂ ਹਨ। ਇਹਨਾਂ ਵਿੱਚ ਪਬਲਿਕ ਤੌਰ ਤੇ ਦਿੱਖ ਸਮੱਸਿਆ " - "ਰਿਪੋਰਟਾਂ ਵਿੱਚ ਸ਼ਾਮਿਲ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "ਮੈਨੂੰ ਪਤਾ ਨਹੀਂ ਕਿ ਇਹ ਸਮੱਸਿਆ ਕਿਵੇਂ ਆਈ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "ਆਕਾਰ:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ਫਾਇਲ ਅਟੈਚ ਕਰੋ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "ਮੈਂ ਡਾਟਾ ਵੇਖ ਲਿਆ ਹੈ ਅਤੇ ਭੇਜਣ ਲਈ ਸਹਿਮਤ ਹਾਂ(_a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -872,19 +837,19 @@ msgstr "" - "(ਜਿਵੇਂ ਯੂਜ਼ਰ-ਨਾਂ ਅਤੇ ਪਾਸਵਰਡ) ਹਟਾ ਦਿੱਤਾ ਹੈ। ਬੈਕਟਰੇਸ, ਕਮਾਂਡ ਲਾਈਨ ਇਨਵਾਇਰਨਮੈਂਟ " - "ਵੇਰੀਏਬਲ ਖਾਸ ਚੀਜਾਂ ਹਨ ਜੋਂ ਜਾਂਚ ਕੀਤੀਆਂ ਜਾ ਸਕਦੀਆਂ ਹਨ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "ਲਾਗ ਵੇਖਾਓ" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "ਰਿਪੋਰਟਿੰਗ ਮੁਕੰਮਲ ਹੋਈ। ਤੁਸੀਂ ਹੁਣ ਵਿੰਡੋ ਬੰਦ ਕਰ ਸਕਦੇ ਹੋ।" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -893,16 +858,15 @@ msgstr "" - "ਜੇ ਤੁਸੀਂ ਵੱਖਰੇ ਟਿਕਾਣੇ ਤੇ ਸਮੱਸਿਆ ਰਿਪੋਰਟ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ, ਵਾਧੂ ਜਾਣਕਾਰੀ ਇਕੱਠੀ " - "ਕਰੋ, ਜਾਂ ਵਧੀਆ ਸਮੱਸਿਆ ਵੇਰਵਾ ਦਿਓ ਅਤੇ ਰਿਪੋਰਟਿੰਗ ਦੁਹਰਾਓ, 'ਅੱਗੇ' ਦਬਾਓ।" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -928,172 +892,238 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "ਅੱਪਲੋਡ ਹੋਇਆ: %llu ਬਾਈਟ %llu ਦਾ" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s ਤੋਂ %s ਨੂੰ ਭੇਜੀ ਜਾ ਰਹੀ ਹੈ" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s ਨੂੰ %s ਤੇ ਸਫਲਤਾਪੂਰਕ ਭੇਜਿਆ ਗਿਆ ਹੈ" -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "ਗੌਰਮੌਜੂਦ ਜਰੂਰੀ ਮੁੱਲ" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "ਗਲਤ utf8 ਅੱਖਰ '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "ਗਲਤ ਨੰਬਰ '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "ਗਲਤ ਬੂਲੀਅਨ ਮੁੱਲ '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "ਨਾ-ਸਹਿਯੋਗੀ ਚੋਣ ਕਿਸਮ" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "ਬੈਕਟਰੇਸ ਅਧੂਰਾ ਹੈ, ਯਕੀਨੀ ਬਣਾਉ ਕਿ ਤੁਸੀਂ ਇਹ ਬਣਾਉਣ ਲਈ ਠੀਕ ਕਦਮ ਚੁੱਕੇ ਹਨ।" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "ਰਿਪੋਰਟਿੰਗ ਅਯੋਗ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਉੱਪਰ ਦਿੱਤੀ ਸਮੱਸਿਆ ਹੱਲ ਕਰੋ।" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1124,21 +1154,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1221,49 +1264,69 @@ msgid "Bugzilla account password" - msgstr "ਬੱਗਜ਼ੀਲਾ ਅਕਾਊਂਟ ਪਾਸਵਰਡ" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "ਬੱਗਜ਼ੀਲਾ URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "ਬੱਗਜ਼ੀਲਾ ਸਰਵਰ ਦਾ ਐਡਰੈੱਸ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL ਦੀ ਜਾਂਚ ਕਰੋ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL ਕੁੰਜੀ ਯੋਗਤਾ ਚੈੱਕ ਕਰੋ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1272,8 +1335,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1282,8 +1345,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1292,8 +1355,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1302,27 +1365,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1360,13 +1402,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1381,7 +1423,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1396,7 +1438,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1431,157 +1473,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "ਸੰਰਚਨਾ ਫਾਇਲ (ਹੋ ਸਕਦਾ ਕਈ ਵਾਰ ਦਿੱਤੀ ਗਈ ਹੈ)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "FILEs ਨੱਥੀ ਕਰੋ [ਇਸ ID ਵਾਲੇ ਬੱਗ ਨਾਲ]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "ਬੱਗ ਭੇਜਣ ਵੇਲੇ, ਬਾਇਨਰੀ ਫਾਇਲਾਂ ਵੀ ਨੱਥੀ ਕਰੋ" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "ਰਿਪੋਰਟਿੰਗ ਕਰੋ ਭਾਵੇਂ ਇਹ ਸਮੱਸਿਆ ਪਹਿਲਾਂ ਵੀ ਰਿਪੋਰਟ ਕੀਤੀ ਹੈ" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "ਵੇਖ ਰਿਹਾ ਹੈ" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "ਡੁਪਲੀਕੇਟ ਲਈ ਜਾਂਚ ਜਾਰੀ" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "ਨਵਾਂ ਬੱਗ ਬਣਾ ਰਿਹਾ ਹੈ" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "ਬੱਗ %i ਨਾਲ ਨੱਥੀ ਜੋੜ ਰਿਹਾ ਹੈ" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "ਬੱਗ ਪਹਿਲਾਂ ਹੀ ਰਿਪੋਰਟ ਕੀਤਾ ਹੈ: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "bug(%d) ਵਿੱਚ ਨਵੀਂ ਟਿੱਪਣੀ ਜੋੜੋ" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "ਵਧੀਆ ਬੈਕਟਰੇਸ ਨੱਥੀ ਕਰ ਰਿਹਾ ਹੈ" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "ਬੱਗ ਅਤੀਤ ਵਿੱਚ ਉਹੀ ਟਿੱਪਣੀ ਮਿਲੀ ਹੈ, ਨਵੀਂ ਨਹੀਂ ਜੋੜ ਰਿਹਾ" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "ਹਾਲਤ: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1616,7 +1699,7 @@ msgstr "" - "Parameter can be overridden via $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" - -@@ -1646,12 +1729,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ਈਮੇਲ ਭੇਜੀ ਜਾ ਰਹੀ ਹੈ..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "ਜਿਸ ਨੂੰ ਈਮੇਲ ਭੇਜੀ ਸੀ: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1665,11 +1748,11 @@ msgstr "" - "\n" - "ਜੇ ਨਿਰਧਾਰਤ ਨਹੀਂ, CONFFILE ਮੂਲ ਇਸ ਤਰਾਂ ਹੁੰਦੀ ਹੈ " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1704,34 +1787,34 @@ msgstr "ਯੂਜ਼ਰ ਦੁਆਰਾ ਰੱਦ ਕੀਤਾ ਹੈ." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "ਲਿਖਣ ਲਈ '%s' ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕਿਆ। ਹੋਰ ਫਾਇਲ ਚੁਣੋ ਜੀ:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "ਰਿਪੋਰਟ %s ਵਿੱਚ ਸ਼ਾਮਿਲ ਕੀਤੀ ਗਈ ਸੀ" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "ਰਿਪੋਰਟ %s ਵਿੱਚ ਸੰਭਾਲੀ ਗਈ ਸੀ" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "ਕੀ ਤੁਸੀਂ ਹਾਲੇ ਵੀ ਇੱਕ RHTSupport ਟਿਕਟ ਬਣਾਉਣੀ ਚਾਹੁੰਦੇ ਹੋ?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1740,77 +1823,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILEs ਅੱਪਲੋਡ ਕਰੋ [ਇਸ ID ਵਾਲੇ ਕੇਸ ਨਾਲ]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' ਨੂੰ ਕੇਸ '%s' ਨਾਲ ਨੱਥੀ ਕਰ ਰਿਹਾ ਹੈ" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "ਡਾਟਾ ਸੰਕੁਚਿਤ ਕਰ ਰਿਹਾ ਹੈ" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1823,41 +1910,49 @@ msgstr "ਦਸਤਾਵੇਜ਼ੀ ਜੋ ਲੋੜੀਂਦੀ ਹੋ ਸਕਦ - msgid "Updates which possibly help: " - msgstr "ਅੱਪਡੇਟ ਜੋ ਮੱਦਦ ਕਰਦੇ ਹਨ: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "ਆਰਚੀਵ ਬਣਾਈ ਗਈ ਹੈ: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "ਅੱਪਲੋਡ ਕਰਨ ਲਈ ਬੇਸ URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1874,7 +1969,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1917,48 +2012,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1966,47 +2061,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2042,39 +2137,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2237,6 +2335,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2302,24 +2416,24 @@ msgstr "ਬੱਗ %i CLOSED ਹੈ, ਪਰ ਇਸ ਦਾ ਕੋਈ RESOLUTION - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "ਬੱਗ %i CLOSED ਹੈ DUPLICATE ਤੌਰ ਤੇ, ਪਰ ਇਸ ਦਾ ਕੋਈ DUP_ID ਨਹੀਂ ਹੈ" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "ਨਵਾਂ ਬੱਗ id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "ਬੱਗਜ਼ੀਲਾ ਨੂੰ bug %d ਦਾ ਅਧਾਰ ਨਹੀਂ ਲੱਭਿਆ" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2512,65 +2626,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2579,51 +2717,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/pl.po b/po/pl.po -index cc3e9a7..effefa5 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -11,18 +11,18 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-04-08 12:40-0400\n" -+"PO-Revision-Date: 2015-08-28 04:00-0400\n" - "Last-Translator: Piotr Drąg \n" - "Language-Team: Polish (http://www.transifex.com/projects/p/libreport/" - "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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -59,7 +59,7 @@ msgstr "Wyświetla wersję i kończy działanie" - - #: ../src/cli/cli.c:91 - msgid "Noninteractive: don't ask questions, assume 'yes'" --msgstr "Nieinteraktywnie: bez zadawania pytań, przyjmuje \"tak\"" -+msgstr "Nieinteraktywnie: bez zadawania pytań, przyjmuje „tak”" - - #: ../src/cli/cli.c:93 - msgid "Log to syslog" -@@ -159,7 +159,7 @@ msgstr "Wprowadzone dane są nieprawidłowe z powodu:" - #: ../src/cli/cli-report.c:475 - #, c-format - msgid "Bad value for '%s': %s" --msgstr "Błędna wartość dla \"%s\": %s" -+msgstr "Błędna wartość dla „%s”: %s" - - #: ../src/cli/cli-report.c:673 - #, c-format -@@ -167,7 +167,7 @@ msgid "" - "Event '%s' requires permission to send possibly sensitive data. Do you want " - "to continue?" - msgstr "" --"Zdarzenie \"%s\" wymaga pozwolenia, aby wysłać możliwie prywatne dane. " -+"Zdarzenie „%s” wymaga pozwolenia, aby wysłać możliwie prywatne dane. " - "Kontynuować?" - - #: ../src/cli/cli-report.c:720 -@@ -186,46 +186,44 @@ msgstr "Proszę wybrać zdarzenie do uruchomienia:" - msgid "Select a workflow to run: " - msgstr "Proszę wybrać tryb działania do uruchomienia:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Wydobywanie cpio z {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" --msgstr "Nie można zapisać do \"{0}\": {1}" -+msgstr "Nie można zapisać do „{0}”: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" --msgstr "Nie można wydobyć pakietu \"{0}\"" -+msgstr "Nie można wydobyć pakietu „{0}”" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Umieszczanie plików z {0} utworzonych z {1} w pamięci podręcznej" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Nie można wydobyć plików z \"{0}\"" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" -+"Nie można wydobyć plików z „{0}”. Więcej informacji znajduje się w „{1}”" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" --msgstr "Nie można usunąć \"{0}\": {1}" -+msgstr "Nie można usunąć „{0}”: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Pobieranie ({0} z {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "Inicjowanie menedżera pakietów" - -@@ -233,131 +231,140 @@ msgstr "Inicjowanie menedżera pakietów" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "Ustawianie repozytoriów" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Wyszukiwanie wymaganych pakietów w repozytoriach" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Nie można odnaleźć pakietów dla plików debuginfo {0}" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Pakiety do pobrania: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "Pobieranie {0:.2f} MB, rozmiar po instalacji: {1:.2f} MB. Kontynuować?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Pobieranie zostało anulowane przez użytkownika" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" --"Ostrzeżenie: za mało wolnego miejsca w katalogu tymczasowym \"{0}\" (zostało " -+"Ostrzeżenie: za mało wolnego miejsca w katalogu tymczasowym „{0}” (pozostało " - "{1:.2f} Mb). Kontynuować?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" --"Ostrzeżenie: za mało wolnego miejsca w katalogu pamięci podręcznej \"{0}\" " --"(zostało {1:.2f} Mb). Kontynuować?" -+"Ostrzeżenie: za mało wolnego miejsca w katalogu pamięci podręcznej „{0}” " -+"(pozostało {1:.2f} Mb). Kontynuować?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Pobranie pakietu {0} się nie powiodło" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." --msgstr "Rozpakowanie nie powiodło się, przerywanie pobierania..." -+msgstr "Rozpakowanie nie powiodło się, przerywanie pobierania…" -+ -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+"abrt musi być właścicielem „{0}”. Proszę wykonać polecenie „# chown -R abrt." -+"abrt {0}”, aby naprawić problem." - - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Usuwanie {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "Nie można usunąć {0}, prawdopodobnie zawiera dziennik błędów" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" --msgstr "Błąd podczas odczytywania konfiguracji repozytorium: \"{0!s}\"" -+msgstr "Błąd podczas odczytywania konfiguracji repozytorium: „{0!s}”" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" --msgstr "Błąd podczas ustawiania repozytoriów: \"{0!s}\"" -+msgstr "Błąd podczas ustawiania repozytoriów: „{0!s}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" --"Wystąpił problem \"{0!s}\" podczas pobierania z serwera lustrzanego: " --"\"{1!s}\". Próbowanie następnego" -+"Wystąpił problem „{0!s}” podczas pobierania z serwera lustrzanego: „{1!s}”. " -+"Próbowanie następnego" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" --"Błąd podczas inicjowania programu yum (YumBase.doConfigSetup): \"{0!s}\"" -+"Błąd podczas inicjowania programu yum (YumBase.doConfigSetup): „{0!s}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - "Błąd: nie można utworzyć katalogu pamięci podręcznej, kończenie działania" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" --msgstr "Nie można wyświetlić repozytorium \"{0!s}\": {1!s}" -+msgstr "Nie można wyświetlić repozytorium „{0!s}”: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Nie można wyłączyć asynchronicznego pobierania, wyjście może zawierać błędy." - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Nie można ustawić {0}: {1}, wyłączanie" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" --msgstr "Błąd podczas pobierania metadanych: \"{0!s}\"" -+msgstr "Błąd podczas pobierania metadanych: „{0!s}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" --msgstr "Błąd podczas pobierania list plików: \"{0!s}\"" -+msgstr "Błąd podczas pobierania list plików: „{0!s}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" --msgstr "Nie można skopiować pliku \"{0}\": {1}" -+msgstr "Nie można skopiować pliku „{0}”: {1}" - - #. Follow GTK3's yes-no-buttons order: - #. * [No] [Yes] -@@ -403,9 +410,9 @@ msgstr "Zdarzenia" - msgid "C_onfigure" - msgstr "Sk_onfiguruj" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" --msgstr "Zam_knij" -+msgstr "Za_mknij" - - #: ../src/gtk-helpers/event_config_dialog.c:144 - msgid "Show password" -@@ -430,7 +437,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Anuluj" - -@@ -443,15 +450,15 @@ msgstr "_OK" - #, c-format - msgid "Can't connect over DBus to name '%s' path '%s' interface '%s': %s" - msgstr "" --"Nie można połączyć przez magistralę D-Bus z nazwą \"%s\" ścieżką \"%s\" " --"interfejsem \"%s\": %s" -+"Nie można połączyć przez magistralę D-Bus z nazwą „%s” ścieżką „%s” " -+"interfejsem „%s”: %s" - - #: ../src/gtk-helpers/secrets.c:191 - #, c-format - msgid "Can't call method '%s' over DBus on path '%s' interface '%s': %s" - msgstr "" --"Nie można wywołać metody \"%s\" przez magistralę D-Bus na ścieżce \"%s\" " --"interfejsie \"%s\": %s" -+"Nie można wywołać metody „%s” przez magistralę D-Bus na ścieżce „%s” " -+"interfejsie „%s”: %s" - - #: ../src/gtk-helpers/secrets.c:549 - msgid "" -@@ -473,19 +480,19 @@ msgstr "" - #, c-format - msgid "D-Bus Secrets Service ReadAlias('%s') method failed: %s" - msgstr "" --"Metoda ReadAlias(\"%s\") usługi Secret Service magistrali D-Bus się nie " -+"Metoda ReadAlias('%s') usługi Secret Service magistrali D-Bus się nie " - "powiodła: %s" - - #. if the error wasn't about invalid properties we have an another problem - #: ../src/gtk-helpers/secrets.c:1104 - #, c-format - msgid "Can't create a secret item for event '%s': %s" --msgstr "Nie można utworzyć tajnego elementu dla zdarzenia \"%s\": %s" -+msgstr "Nie można utworzyć tajnego elementu dla zdarzenia „%s”: %s" - - #: ../src/gtk-helpers/secrets.c:1286 - #, c-format - msgid "can't get secret value of '%s': %s" --msgstr "nie można uzyskać tajnej wartości \"%s\": %s" -+msgstr "nie można uzyskać tajnej wartości „%s”: %s" - - #: ../src/gtk-helpers/problem_details_widget.c:191 - #, c-format -@@ -514,7 +521,7 @@ msgid "" - "\n" - "GUI tool to analyze and report problem saved in specified PROBLEM_DIR" - msgstr "" --"& [-vpdx] [-e ZDARZENIE]... [-g PLIK_GUI] KATALOG_PROBLEMU\n" -+"& [-vpdx] [-e ZDARZENIE]… [-g PLIK_GUI] KATALOG_PROBLEMU\n" - "\n" - "Graficzne narzędzie do analizy i zgłaszania problemów zapisanych w podanym " - "KATALOGU_PROBLEMU" -@@ -523,24 +530,24 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternatywny plik GUI" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" --"Wymagany jest zapisywalny katalog, ale \"%s\" nie jest zapisywalny. " --"Przenieść go do \"%s\" i działać na przeniesionych danych?" -+"Wymagany jest zapisywalny katalog, ale „%s” nie jest zapisywalny. Przenieść " -+"go do „%s” i działać na przeniesionych danych?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Wyświetla/modyfikuje plik tekstowy" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" --msgstr "Zapi_sz" -+msgstr "_Zapisz" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -548,39 +555,39 @@ msgstr "" - "Nie określono celów zgłaszania dla tego problemu. Proszę sprawdzić " - "konfigurację w /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(wymaga: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(nie jest wymagane, dane już istnieją: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(naciśnięcie tutaj wyświetla/modyfikuje)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(plik binarny, %llu bajtów)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(brak opisu)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bajtów, %u plików" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Anulowano przetwarzanie" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -590,11 +597,11 @@ msgid "" - msgstr "" - "Przetworzenie problemu się nie powiodło. Może mieć to wiele przyczyn, ale " - "najczęstszymi są:\n" --"\t▫ problemy z połączeniem sieciowym\n" --"\t▫ uszkodzone dane problemu\n" --"\t▫ nieprawidłowa konfiguracja" -+"\t• problemy z połączeniem sieciowym\n" -+"\t• uszkodzone dane problemu\n" -+"\t• nieprawidłowa konfiguracja" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -606,7 +613,7 @@ msgstr "" - "w menu programu i nacisnąć przycisk Powtórz po zastosowaniu zmian " - "konfiguracji." - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -626,206 +633,161 @@ msgstr "" - "przechowywane na chronionych serwerach i tylko ograniczona liczba osób może " - "je odczytać." - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "Przetwarzanie zostało przerwane, ponieważ problem nie można zgłosić." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Przetwarzanie się nie powiodło." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Ukończono przetwarzanie." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Ukończono przetwarzanie. Proszę przejść do następnego kroku." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"Zażądano zgłoszenia prywatnego, ale nazwa grupy \"private\" jest " --"przestarzała. Prosimy używać grupy \"fedora_contrib_private\". Należy " --"kliknąć przycisk \"Tak\" lub zaktualizować konfigurację ręcznie. Można też " --"kliknąć przycisk \"Nie\", jeśli na pewno ma zostać użyta grupa \"private\".\n" --"\n" --"Jeśli to okno dialogowe pozostawia wątpliwości, to prosimy nam zaufać i " --"kliknąć przycisk \"Tak\".\n" --"\n" --"Więcej informacji o prywatnych zgłoszeniach błędów:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"Zażądano zgłoszenia prywatnego, ale nazwa grupy private jest " --"przestarzała. Prosimy używać grupy fedora_contrib_private. Należy " --"kliknąć przycisk \"Tak\" lub zaktualizować konfigurację ręcznie. Można też " --"kliknąć przycisk \"Nie\", jeśli na pewno ma zostać użyta grupa private.\n" --"\n" --"Jeśli to okno dialogowe pozostawia wątpliwości, to prosimy nam zaufać i " --"kliknąć przycisk \"Tak\".\n" --"\n" --"Więcej informacji o prywatnych zgłoszeniach błędów:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" --msgstr "Nie podano przetwarzania dla zdarzenia \"%s\"" -+msgstr "Nie podano przetwarzania dla zdarzenia „%s”" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Przerwano przetwarzanie: nie można kontynuować bez zapisywalnego katalogu." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." --msgstr "Przetwarzanie..." -+msgstr "Przetwarzanie…" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "Wykryto dane osobiste, proszę modyfikować zgłoszenie, aby je usunąć." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Nie można sprawdzić oceny wyjątku z powodu nieprawidłowej nazwy zdarzenia" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" --"Zdarzenie \"%s\" wymaga pozwolenia, aby wysłać możliwie prywatne dane.\n" -+"Zdarzenie „%s” wymaga pozwolenia, aby wysłać możliwie prywatne dane.\n" - "Kontynuować?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Ten problem nie powinien zostać zgłoszony (prawdopodobnie jest już znany). " - "%s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Otwórz" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" --msgstr "\"%s\" nie jest zwykłym plikiem" -+msgstr "„%s” nie jest zwykłym plikiem" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Próba skopiowania pliku do niego samego" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" --msgstr "Nie można skopiować \"%s\": %s" -+msgstr "Nie można skopiować „%s”: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" --msgstr "Element \"%s\" już istnieje i nie jest modyfikowalny" -+msgstr "Element „%s” już istnieje i nie jest modyfikowalny" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Dołącz" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nazwa" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Wartość" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Opis problemu" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Proszę wybrać, jak zgłosić ten problem" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Proszę podać dodatkowe informacje" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Przejrzenie danych" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Proszę potwierdzić dane do zgłoszenia" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Przetwarzanie" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Ukończono przetwarzanie" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "_Zatrzymaj" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Wyślij do analizy" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "Powtórz" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Dalej" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Szczegóły" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Ogranicza dostęp do zgłoszenia" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -883,28 +845,6 @@ msgstr "Wyszukaj" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "Wykryto dane osobiste, proszę modyfikować zgłoszenie, aby je usunąć." -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Ogranicza dostęp do zgłoszenia" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Nikt poza członkami grupy Współtwórcy Fedory nie będzie mógł zobaczyć " --"zgłoszenia z ograniczonym dostępem (nawet zgłaszający)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Więcej informacji o zgłoszeniach z ograniczonym dostępem" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -913,9 +853,9 @@ msgstr "" - "Na następnych ekranach użytkownik będzie proszony o opisanie wystąpienia " - "problemu, wybranie sposobu jego analizy (jeśli to potrzebne), przejrzenie " - "zebranych danych i wybranie miejsca zgłoszenia problemu. Proszę nacisnąć " --"przycisk \"Dalej\", aby kontynuować." -+"przycisk „Dalej”, aby kontynuować." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -925,11 +865,11 @@ msgstr "" - "dodatkowe komentarze, przydatne do diagnozowania problemu? Proszę używać " - "języka angielskiego, jeśli to możliwe." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Należy wypełnić pole przed kontynuowaniem." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -937,31 +877,31 @@ msgstr "" - "Komentarze nie są prywatne. Mogą one zostać dołączone do publicznie " - "widocznych zgłoszeń problemów." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Jeśli nie wiadomo, jak go opisać, można" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" --msgstr "dodaj nagranie pulpitu" -+msgstr "dodać nagranie pulpitu" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Nie wiadomo, co spowodowało ten problem" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Rozmiar:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Dołącz plik" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Przejrzałem dane i zg_adzam się na ich wysłanie" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -971,19 +911,19 @@ msgstr "" - "wszystkie prywatne dane (takie jak nazwy użytkowników i hasła). Zwykle warto " - "sprawdzić wyjątek, wiersz poleceń i zmienne środowiskowe." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Przetwarzanie nie zostało jeszcze rozpoczęte" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Wyświetl dziennik" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Ukończono zgłaszanie. Można już zamknąć to okno." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -991,25 +931,24 @@ msgid "" - msgstr "" - "Aby zgłosić problem w innym miejscu, zebrać dodatkowe informacje lub podać " - "lepszy opis błędu i powtórzyć proces zgłaszania, należy nacisnąć przycisk " --"\"Dalej\"." -+"„Dalej”." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Więcej informacji" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Katalog problemu" - - #: ../src/lib/abrt_sock.c:160 - #, c-format - msgid "Can't delete: '%s'" --msgstr "Nie można usunąć: \"%s\"" -+msgstr "Nie można usunąć: „%s”" - - #: ../src/lib/abrt_sock.c:196 - msgid "locked by another process" -@@ -1026,93 +965,134 @@ msgstr "nie jest katalogiem problemu" - #: ../src/lib/abrt_sock.c:217 - #, c-format - msgid "Can't delete '%s': %s" --msgstr "Nie można usunąć \"%s\": %s" -+msgstr "Nie można usunąć „%s”: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "t" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "z" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Brak wymaganego elementu: \"%s\"" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" --msgstr "wartość UID nie jest prawidłowa: \"%s\"" -+msgstr "wartość UID nie jest prawidłowa: „%s”" -+ -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Brak wymaganego elementu: „%s”" - - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Wysłano: %llu z %llu kilobajtów" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Wysyłanie %s do %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" --msgstr "Proszę podać nazwę użytkownika dla \"%s\":" -+msgid "Please enter user name for '%s//%s':" -+msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" --msgstr "Proszę podać hasło dla \"%s\":" -+msgid "Please enter password for '%s//%s@%s':" -+msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Pomyślnie wysłano %s do %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Brak obowiązkowej wartości" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" --msgstr "Nieprawidłowy znak UTF8 \"%c\"" -+msgstr "Nieprawidłowy znak UTF8 „%c”" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" --msgstr "Nieprawidłowy numer \"%s\"" -+msgstr "Nieprawidłowy numer „%s”" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" --msgstr "Nieprawidłowa wartość logiczna \"%s\"" -+msgstr "Nieprawidłowa wartość logiczna „%s”" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Nieobsługiwany typ opcji" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" --"Problem nie może zostać zgłoszony z powodu nieprawidłowych danych. Plik " --"\"%s\" nie zawiera numeru." -+"Problem nie może zostać zgłoszony z powodu nieprawidłowych danych. Plik „%s” " -+"nie zawiera numeru." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Prosimy zgłosić ten problem programistom projektu ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1120,31 +1100,46 @@ msgstr "" - "Wyjątek jest niepełny. Proszę upewnić się, że podano właściwe kroki " - "ponownego wywołania awarii." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "Wyjątek prawdopodobnie nie może pomóc programistom w diagnozowaniu błędu." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Zgłaszanie jest wyłączone, ponieważ nie można użyć wyjątku." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - "Proszę spróbować zainstalować pakiet debuginfo ręcznie, używając polecenia: " --"\"debuginfo-install %s\" i spróbować ponownie." -+"„debuginfo-install %s” i spróbować ponownie." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "Prawdopodobnie brak poprawnego pakietu debuginfo lub zrzut core jest " - "uszkodzony." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1153,63 +1148,73 @@ msgstr "Problem jest powodowany prawdopodobnie przez %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Problem jest powodowany prawdopodobnie przez jedno z poniższych:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" --"Wysłanie uReport do serwera \"%s\" za pomocą programu curl się nie powiodło: " -+"Wysłanie uReport do serwera „%s” za pomocą programu curl się nie powiodło: " - "%s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" --msgstr "Adres URL \"%s\" nie istnieje (otrzymano błąd 404 z serwera)" -+msgstr "Adres URL „%s” nie istnieje (otrzymano błąd 404 z serwera)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" --msgstr "Wystąpił wewnętrzny błąd serwera w \"%s\" (otrzymano błąd 500)" -+msgstr "Wystąpił wewnętrzny błąd serwera w „%s” (otrzymano błąd 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" --msgstr "Serwer w \"%s\" obecnie nie może obsłużyć żądania (otrzymano błąd 503)" -+msgstr "Serwer w „%s” obecnie nie może obsłużyć żądania (otrzymano błąd 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" --msgstr "Nieoczekiwana odpowiedź HTTP z \"%s\": %d" -+msgstr "Nieoczekiwana odpowiedź HTTP z „%s”: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" --msgstr "Nie można przetworzyć odpowiedzi od serwera uReport w \"%s\"" -+msgstr "Nie można przetworzyć odpowiedzi od serwera uReport w „%s”" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" --msgstr "Odpowiedź z \"%s\" ma nieprawidłowy format" -+msgstr "Odpowiedź z „%s” ma nieprawidłowy format" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" --msgstr "Wykryto niepasujący typ w odpowiedzi z \"%s\"" -+msgstr "Wykryto niepasujący typ w odpowiedzi z „%s”" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Wysłanie problemu się nie powiodło" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" --msgstr "Serwer w \"%s\" odpowiedział błędem: \"%s\"" -+msgstr "Serwer w „%s” odpowiedział błędem: „%s”" - - #: ../src/lib/make_descr.c:149 ../src/lib/make_descr.c:160 - msgid "Reported:" -@@ -1226,7 +1231,7 @@ msgstr "Użycie: " - #: ../src/lib/problem_data.c:252 - #, c-format - msgid "Essential element '%s' is missing, can't continue" --msgstr "Brak niezbędnego pliku \"%s\", nie można kontynuować" -+msgstr "Brak niezbędnego pliku „%s”, nie można kontynuować" - - #: ../src/lib/problem_report.c:477 - #, c-format -@@ -1237,71 +1242,84 @@ msgstr "Nie można przetworzyć wyjątku: %s" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "Nie można utworzyć opisu wyjątku stosu (brak powiązanej awarii?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "Uwaga nie zawiera oceny" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" --msgstr "(\"%s\" zostało zakończone przez sygnał %u)\n" -+msgstr "(„%s” zostało zakończone przez sygnał %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" --msgstr "(\"%s\" ukończono pomyślnie)\n" -+msgstr "(„%s” ukończono pomyślnie)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" --msgstr "(\"%s\" zastało zakończone z %u)\n" -+msgstr "(„%s” zastało zakończone z %u)\n" - - #: ../src/plugins/abrt_rh_support.c:356 - #, c-format - msgid "Error in case creation at '%s': %s" --msgstr "Błąd podczas tworzenia przypadku w \"%s\": %s" -+msgstr "Błąd podczas tworzenia przypadku w „%s”: %s" - - #: ../src/plugins/abrt_rh_support.c:365 - #, c-format - msgid "Error in case creation at '%s', HTTP code: %d, server says: '%s'" - msgstr "" --"Błąd podczas tworzenia przypadku w \"%s\", kod HTTP: %d, komunikat serwera: " --"\"%s\"" -+"Błąd podczas tworzenia przypadku w „%s”, kod HTTP: %d, komunikat serwera: " -+"„%s”" - - #: ../src/plugins/abrt_rh_support.c:369 - #, c-format - msgid "Error in case creation at '%s', HTTP code: %d" --msgstr "Błąd podczas tworzenia przypadku w \"%s\", kod HTTP: %d" -+msgstr "Błąd podczas tworzenia przypadku w „%s”, kod HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:420 - #, c-format - msgid "Error in case creation at '%s': no Location URL, HTTP code: %d" - msgstr "" --"Błąd podczas tworzenia przypadku w \"%s\": brak adresu URL położenia, kod " --"HTTP: %d" -+"Błąd podczas tworzenia przypadku w „%s”: brak adresu URL położenia, kod HTTP:" -+" %d" - - #: ../src/plugins/abrt_rh_support.c:524 - #, c-format - msgid "Error in comment creation at '%s': %s" --msgstr "Błąd podczas tworzenia komentarza w \"%s\": %s" -+msgstr "Błąd podczas tworzenia komentarza w „%s”: %s" - - #: ../src/plugins/abrt_rh_support.c:533 - #, c-format - msgid "Error in comment creation at '%s', HTTP code: %d, server says: '%s'" - msgstr "" --"Błąd podczas tworzenia komentarza w \"%s\", kod HTTP: %d, komunikat serwera: " --"\"%s\"" -+"Błąd podczas tworzenia komentarza w „%s”, kod HTTP: %d, komunikat serwera: " -+"„%s”" - - #: ../src/plugins/abrt_rh_support.c:537 - #, c-format - msgid "Error in comment creation at '%s', HTTP code: %d" --msgstr "Błąd podczas tworzenia komentarza w \"%s\", kod HTTP: %d" -+msgstr "Błąd podczas tworzenia komentarza w „%s”, kod HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:583 - #, c-format - msgid "Error in comment creation at '%s': no Location URL, HTTP code: %d" - msgstr "" --"Błąd podczas tworzenia komentarza w \"%s\": brak adresu URL położenia, kod " -+"Błąd podczas tworzenia komentarza w „%s”: brak adresu URL położenia, kod " - "HTTP: %d" - - #: ../src/plugins/report_Bugzilla.xml.in.h:1 -@@ -1327,8 +1345,8 @@ msgid "" - "You can create bugzilla.redhat.com account <a href=\"https://bugzilla." - "redhat.com/createaccount.cgi\">here</a>" - msgstr "" --"Można utworzyć konto w witrynie bugzilla.redhat.com pod tym adresem" -+"Można utworzyć konto w witrynie bugzilla.redhat.com <a href=\"https://" -+"bugzilla.redhat.com/createaccount.cgi\">pod tym adresem</a>" - - #: ../src/plugins/report_Bugzilla.xml.in.h:6 - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:6 -@@ -1342,32 +1360,57 @@ msgid "Bugzilla account password" - msgstr "Hasło konta Bugzilli" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Ogranicz dostęp" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Ogranicza dostęp do utworzonego zgłoszenia w Bugzilli, umożliwiając " -+"wyświetlanie go tylko użytkownikom z podanych grup (więcej informacji " -+"znajduje się w zaawansowanych ustawieniach)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Grupy" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Ogranicza dostęp do podanych grup <a href=\"https://github.com/abrt/abrt/" -+"wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Adres URL Bugzilli" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Adres serwera Bugzilli" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Sprawdzanie SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Sprawdzanie poprawności klucza SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Produkt w Bugzilli" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1375,11 +1418,11 @@ msgstr "" - "Należy to podać tylko, jeśli wymagany jest produkt inny niż podany w pliku /" - "etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Wersja produktu w Bugzilli" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1387,8 +1430,8 @@ msgstr "" - "Należy to podać tylko, jeśli wymagana jest wersja produktu inna niż podana w " - "pliku /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1397,8 +1440,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "Pośrednik HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1407,8 +1450,8 @@ msgstr "Pośrednik HTTP" - msgid "Sets the proxy server to use for HTTP" - msgstr "Ustawia serwer pośrednika do użycia dla HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1417,8 +1460,8 @@ msgstr "Ustawia serwer pośrednika do użycia dla HTTP" - msgid "HTTPS Proxy" - msgstr "Pośrednik HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1427,32 +1470,6 @@ msgstr "Pośrednik HTTPS" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Ustawia serwer pośrednika do użycia dla HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Ogranicz dostęp" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Ogranicza dostęp do utworzonego zgłoszenia w Bugzilli, umożliwiając " --"wyświetlanie go tylko użytkownikom z podanych grup (więcej informacji " --"znajduje się w zaawansowanych ustawieniach)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Grupy" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Ogranicza dostęp do podanych grup <a href=\"https://github.com/abrt/abrt/" --"wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1465,19 +1482,19 @@ msgid "" - "\n" - "Configuration (such as login data) can be supplied via files\n" - msgstr "" --"& [-v] --target CEL --ticket IDENTYFIKATOR PLIK...\n" -+"& [-v] --target CEL --ticket IDENTYFIKATOR PLIK…\n" - "\n" - "Wysyła PLIKI do podanego zgłoszenia w CELU.\n" - "\n" - "To narzędzie ma ułatwiać przejście użytkowników pakietu report do\n" --"libreport. Rozpoznawane CELE to \"strata\" i \"bugzilla\". Pierwszy\n" -+"libreport. Rozpoznawane CELE to „strata” i „bugzilla”. Pierwszy\n" - "wywołuje wysyłanie do RHTSupport, a drugie do Bugzilli.\n" - "\n" - "Konfiguracja (taka jak dane logowania) może być dostarczana przez pliki\n" - - #: ../src/plugins/report.c:59 - msgid "'strata' or 'bugzilla'" --msgstr "\"strata\" lub \"bugzilla\"" -+msgstr "„strata” lub „bugzilla”" - - #: ../src/plugins/report.c:60 - msgid "Ticket/case ID" -@@ -1492,13 +1509,13 @@ msgstr "" - "poleceń, ignorowanie zmiennej środowiskowej i konfiguracji" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Nie można kontynuować bez loginu" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Nie można kontynuować bez hasła" -@@ -1513,10 +1530,10 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "Nieprawidłowe hasło lub login. Proszę podać login Bugzilli:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" --msgstr "Nieprawidłowe hasło lub login. Proszę podać hasło dla \"%s\":" -+msgstr "Nieprawidłowe hasło lub login. Proszę podać hasło dla „%s”:" - - #: ../src/plugins/reporter-bugzilla.c:221 - msgid "" -@@ -1528,7 +1545,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1562,125 +1579,99 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g NAZWA-GRUPY]... [-c PLIK_KONFIGURACJI] [-F PLIK_FMT] [-A " --"PLIK_FMT2] -d KATALOG\n" --"lub:\n" --"& [-v] [-c PLIK_KONFIGURACJI] [-d KATALOG] -t[IDENTYFIKATOR] PLIK...\n" --"lub:\n" --"& [-v] [-c PLIK_KONFIGURACJI]... [-d KATALOG] -t[IDENTYFIKATOR] -w\n" --"lub:\n" --"& [-v] [-c PLIK_KONFIGURACJI]... -h SUMA_DUPLIKATU\n" --"\n" --"Zgłasza problemy w serwisie Bugzilla.\n" --"\n" --"Narzędzie odczytuje KATALOG. Następnie loguje się w serwisie Bugzilla\n" --"i próbuje odnaleźć błąd o tym samym abrt_hash:CIĄG_SZESNASTKOWY\n" --"w polu \"Whiteboard\".\n" --"\n" --"Jeśli taki błąd nie zostanie odnaleziony, to zostanie utworzony nowy.\n" --"Elementy KATALOGU są przechowywane w błędzie jako część opisu błędu lub jako\n" --"załączniki, w zależności od ich typu i rozmiaru.\n" --"\n" --"W przeciwnym przypadku, jeśli taki błąd zostanie odnaleziony i jest\n" --"oznaczony jako ZAMKNIĘTY DUPLIKAT, to narzędzie podąża za ciągiem\n" --"duplikatów, aż odnajdzie błąd nie będący DUPLIKATEM. Następnie dodaje\n" --"nowy komentarz do odnalezionego błędu.\n" --"\n" --"Adres URL do nowego lub zmodyfikowanego błędu jest wyświetlana w\n" --"standardowym wyjściu i nagrywana w elemencie \"reported_to\".\n" --"\n" --"Opcja -t wysyła PLIKI do już utworzonego błędu w serwisie Bugzilla\n" --"Identyfikator błędu jest pobierany z katalogu podanego przez opcję\n" --"-d KATALOG. Jeśli dane problemu w KATALOGU nigdy nie zostały zgłoszone\n" --"w serwisie Bugzilla, to wysłanie się nie powiedzie.\n" --"\n" --"Opcja -tID wysyła PLIKI do błędu o podanym identyfikatorze w\n" --"serwisie Bugzilla. Opcja -d KATALOG jest ignorowana.\n" --"\n" --"Opcja -w dodaje użytkownika Bugzilli do listy CC błędu.\n" --"\n" --"Opcja -r ustawia ostatni adres URL z elementu reporter_to, który zawiera\n" --"przedrostek TRACKER_NAME w polu URL. Ta opcja jest zastosowywana tylko,\n" --"jeśli zgłoszony ma zostać nowy błąd. Domyślna wartość to \"ABRT Server\"\n" --"\n" --"Jeśli nie podano, domyślnym PLIKIEM_KONFIGURACJI jest " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Plik konfiguracji (może być podawany wiele razy)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Formatowanie pliku dla początkowego komentarza" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Formatowanie pliku dla duplikatów" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Dołącza PLIKI [do błędu o tym identyfikatorze]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Dołącza także pliki binarne podczas tworzenia błędów" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Wymusza zgłoszenie nawet, jeśli ten problem został już zgłoszony" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "Dodaje użytkownika Bugzilli do listy CC [błędu o tym identyfikatorze]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Wyświetla IDENTYFIKATOR_BŁĘDU o podanej SUMIE_DUPLIKATU" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - "Nazwa systemu śledzenia błędów dla dodatkowego adresu URL z elementu " --"\"reported_to\"" -+"„reported_to”" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Ogranicza dostęp tylko do tej grupy" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Debuguj" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Wyszukiwanie podobnych problemów w serwisie Bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" - msgstr "" --"Login nie jest dostarczany przez konfigurację. Proszę podać login Bugzilli:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "Konfiguracja nie podaje loginu. Proszę podać login Bugzilli:" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" --"Hasło nie jest dostarczane przez konfigurację. Proszę podać hasło dla \"%s\":" --"" -+"Hasło nie jest dostarczane przez konfigurację. Proszę podać hasło dla „%s”:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1688,85 +1679,107 @@ msgstr "" - "Nie można uzyskać identyfikatora Bugzilli, ponieważ ten problem nie został " - "jeszcze w niej zgłoszony." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" --"Ten problem został zgłoszony w Bugzilli \"%s\", która różni się od " --"skonfigurowanej Bugzilli \"%s\"." -+"Ten problem został zgłoszony w Bugzilli „%s”, która różni się od " -+"skonfigurowanej Bugzilli „%s”." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." --msgstr "Błędnie sformatowany adres URL do Bugzilli \"%s\"." -+msgstr "Błędnie sformatowany adres URL do Bugzilli „%s”." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" --msgstr "Używanie identyfikatora Bugzilli \"%s\"" -+msgstr "Używanie identyfikatora Bugzilli „%s”" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Wylogowywanie" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "Nie można ustalić produktu w Bugzilli z danych problemu." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Sprawdzanie duplikatów" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Tworzenie nowego błędu" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Utworzenie nowego błędu się nie powiodło." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Dodawanie zewnętrznego adresu URL do błędu %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Dodawanie załączników do błędu %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Błąd został już zgłoszony: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "Dodawanie %s do listy CC" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Dodawanie nowego komentarza do błędu %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Dołączanie lepszego wyjątku" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Odnaleziono taki sam komentarz w historii błędu, nowy nie zostanie dodany" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Stan: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1789,19 +1802,19 @@ msgid "" - "Recognized string parameter: SubmitURL.\n" - "Parameter can be overridden via $KerneloopsReporter_SubmitURL." - msgstr "" --"& [-v] [-c PLIK_KONFIGURACJI]... -d KATALOG\n" -+"& [-v] [-c PLIK_KONFIGURACJI]… -d KATALOG\n" - "\n" - "Wysyła awarię jądra do witryny kerneloops.org (lub podobnej).\n" - "\n" - "Pliki z nazwami wymienionymi w zmiennej $EXCLUDE_FROM_REPORT\n" - "nie są dołączane do pakietu tar.\n" - "\n" --"Wiersze PLIKU_KONFIGURACJI powinny być w formacie \"PARAM = VALUE\".\n" -+"Wiersze PLIKU_KONFIGURACJI powinny być w formacie „PARAM = VALUE”.\n" - "Rozpoznawany parametr: SubmitURL.\n" - "Parametr może być zastąpiony przez zmienną $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Plik konfiguracji" - -@@ -1812,7 +1825,7 @@ msgid "" - "'%s' is to be used" - msgstr "" - "Nie podano adresu e-mail %s. Zrobić to teraz? Jeśli nie zostanie podany, to " --"zostanie użyty adres \"%s\"" -+"zostanie użyty adres „%s”" - - #: ../src/plugins/reporter-mailx.c:66 - #, c-format -@@ -1831,14 +1844,14 @@ msgstr "Wysyłanie powiadomienia przez e-mail do: %s" - - #: ../src/plugins/reporter-mailx.c:138 - msgid "Sending an email..." --msgstr "Wysłanie wiadomości e-mail..." -+msgstr "Wysłanie wiadomości e-mail…" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Wysłano wiadomość e-mail do: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1852,11 +1865,11 @@ msgstr "" - "\n" - "Jeśli nie podano, domyślnym PLIKIEM_KONFIGURACJI jest " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Plik konfiguracji" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Tylko powiadamianie (bez oznaczania zgłoszenia jako wysłanego)" - -@@ -1889,36 +1902,36 @@ msgstr "Anulowane przez użytkownika." - #: ../src/plugins/reporter-print.c:108 - #, c-format - msgid "Can't open '%s' for writing. Please select another file:" --msgstr "Nie można otworzyć \"%s\" do zapisania. Proszę wybrać inny plik:" -+msgstr "Nie można otworzyć „%s” do zapisania. Proszę wybrać inny plik:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Zgłoszenie zostało dodane do %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Zgłoszenie zostało przechowane w %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" --msgstr "Serwer odpowiedział błędem: \"%s\"" -+msgstr "Serwer odpowiedział błędem: „%s”" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Nadal utworzyć zgłoszenie RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "Nieprawidłowe hasło lub login. Proszę podać login Red Hat:" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1926,92 +1939,86 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-v] [-c PLIK_KONFIGURACJI] -d KATALOG\n" --"lub:\n" --"& [-v] [-c PLIK_KONFIGURACJI] [-d KATALOG] -t[IDENTYFIKATOR] [-u -C " --"PLIK_KONFIGURACJI_UR] PLIK...\n" --"\n" --"Zgłasza problem do RHTSupport.\n" --"\n" --"Jeśli nie podano, domyślnym PLIKIEM_KONFIGURACJI jest " - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Wysyła PLIKI [do zdarzenia o tym identyfikatorze]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "Wyślij uReport przed utworzeniem nowego zgłoszenia" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "Plik konfiguracji dla uReport" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "Konfiguracja nie podaje loginu. Proszę podać login RHTS:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" --msgstr "Dołączanie \"%s\" do zdarzenia \"%s\"" -+msgstr "Dołączanie „%s” do zdarzenia „%s”" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "Wysyłanie danych statystycznych awarii ABRT" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Nie można utworzyć katalogu tymczasowego w" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Kompresowanie danych" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Nie można utworzyć katalogu tymczasowego w" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Nie można utworzyć tymczasowego pliku w" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Sprawdzanie podpowiedzi" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Tworzenie nowego przypadku" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "Nie można ustalić produktu wsparcia firmy RH z danych problemu." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "Powiązywanie wpisów statystyk awarii ABRT ze zgłoszeniem" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" --"Powiązywanie wpisów statystyk awarii ABRT z kontaktowym adresem e-mail: " --"\"%s\"" -+"Powiązywanie wpisów statystyk awarii ABRT z kontaktowym adresem e-mail: „%s”" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" --msgstr "Dodawanie komentarza do przypadku \"%s\"" -+msgstr "Dodawanie komentarza do przypadku „%s”" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" --msgstr "Dołączanie danych problemu do przypadku \"%s\"" -+msgstr "Dołączanie danych problemu do przypadku „%s”" - - #: ../src/plugins/reporter-rhtsupport-parse.c:202 - msgid "Documentation which might be relevant: " -@@ -2021,47 +2028,51 @@ msgstr "Dokumentacja, która może być istotna: " - msgid "Updates which possibly help: " - msgstr "Aktualizacje, które mogą pomóc: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Nie można kontynuować bez adresu URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" --"Proszę podać adres URL (SCP, FTP, itp.), do którego wyeksportować dane " --"problemu:" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "Proszę podać hasło do wysyłania:" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" --msgstr "Utworzono archiwum: \"%s\"" -+msgstr "Utworzono archiwum: „%s”" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d KATALOG [-c PLIK-KONFIGURACJI] [-u URL]\n" --"\n" --"Wysyła skompresowane archiwum tar KATALOGU problemu na adres URL.\n" --"Jeśli nie podano adresu URL, to tworzy archiwum tar w" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Podstawowy adres URL, do którego wysłać" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+"Proszę podać adres URL (SCP, FTP itp.), do którego wyeksportować dane " -+"problemu:" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "Login serwisu MantisBT:" -@@ -2078,7 +2089,7 @@ msgstr "Konfiguracja nie dostarcza danych uwierzytelniających." - msgid "Invalid password or login." - msgstr "Nieprawidłowe hasło lub login." - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2121,18 +2132,18 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - "\n" --"& [-vf] [-c PLIK_KONFIGURACJI]... [-F PLIK_FMT] [-A PLIK_FMT2] -d KATALOG\n" -+"& [-vf] [-c PLIK_KONFIGURACJI]… [-F PLIK_FMT] [-A PLIK_FMT2] -d KATALOG\n" - "lub:\n" --"& [-v] [-c PLIK_KONFIGURACJI] [-d KATALOG] -t[IDENTYFIKATOR] PLIK...\n" -+"& [-v] [-c PLIK_KONFIGURACJI] [-d KATALOG] -t[IDENTYFIKATOR] PLIK…\n" - "lub:\n" --"& [-v] [-c PLIK_KONFIGURACJI]... [-d KATALOG] -t[IDENTYFIKATOR] -w\n" -+"& [-v] [-c PLIK_KONFIGURACJI]… [-d KATALOG] -t[IDENTYFIKATOR] -w\n" - "lub:\n" --"& [-v] [-c PLIK_KONFIGURACJI]... -h SUMA_DUPLIKATU\n" -+"& [-v] [-c PLIK_KONFIGURACJI]… -h SUMA_DUPLIKATU\n" - "\n" - "Zgłasza problemy w serwisie MantisBT.\n" - "\n" - "Narzędzie odczytuje KATALOG. Następnie próbuje odnaleźć błąd\n" --"o tym samym abrt_hash w polu \"abrt_hash\".\n" -+"o tym samym abrt_hash w polu „abrt_hash”.\n" - "\n" - "Jeśli taki błąd nie zostanie odnaleziony, to zostanie utworzony nowy.\n" - "Elementy KATALOGU są przechowywane w błędzie jako część opisu błędu\n" -@@ -2144,7 +2155,7 @@ msgstr "" - "nowy komentarz do odnalezionego błędu.\n" - "\n" - "Adres URL do nowego lub zmodyfikowanego błędu jest wyświetlana w\n" --"standardowym wyjściu i nagrywana w elemencie \"reported_to\".\n" -+"standardowym wyjściu i nagrywana w elemencie „reported_to”.\n" - "\n" - "Opcja -t wysyła PLIKI do już utworzonego błędu w serwisie MantisBT.\n" - "Identyfikator błędu jest pobierany z katalogu podanego przez opcję\n" -@@ -2158,24 +2169,24 @@ msgstr "" - "\n" - "Opcja -r ustawia ostatni adres URL z elementu reporter_to, który zawiera\n" - "przedrostek TRACKER_NAME w polu URL. Ta opcja jest zastosowywana tylko,\n" --"jeśli zgłoszony ma zostać nowy błąd. Domyślna wartość to \"ABRT Server\"\n" -+"jeśli zgłoszony ma zostać nowy błąd. Domyślna wartość to „ABRT Server”\n" - "\n" - "Jeśli nie podano, domyślnym PLIKIEM_KONFIGURACJI jest " - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "Dołącza PLIKI [do błędu o tym identyfikatorze]" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." --msgstr "Nie można otworzyć katalogu problemu \"%s\"." -+msgstr "Nie można otworzyć katalogu problemu „%s”." - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "Wyszukiwanie podobnych problemów w serwisie MantisBT" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." -@@ -2183,83 +2194,83 @@ msgstr "" - "Nie można uzyskać identyfikatora serwisu MantisBT, ponieważ ten problem nie " - "został jeszcze w nim zgłoszony." - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" --"Ten problem został zgłoszony w serwisie MantisBT \"%s\", który różni się od " --"skonfigurowanego serwisu MantisBT \"%s\"." -+"Ten problem został zgłoszony w serwisie MantisBT „%s”, który różni się od " -+"skonfigurowanego serwisu MantisBT „%s”." - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." --msgstr "Błędnie sformatowany adres URL do serwisu MantisBT \"%s\"." -+msgstr "Błędnie sformatowany adres URL do serwisu MantisBT „%s”." - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" --msgstr "Używanie identyfikatora serwisu MantisBT \"%s\"" -+msgstr "Używanie identyfikatora serwisu MantisBT „%s”" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" --msgstr "Dołączanie pliku \"%s\" do błędu \"%s\"" -+msgstr "Dołączanie pliku „%s” do błędu „%s”" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " - "to create a new issue?" - msgstr "" --"Ten problem został zgłoszony w serwisie MantisBT (proszę zobaczyć \"%s\"). " -+"Ten problem został zgłoszony w serwisie MantisBT (proszę zobaczyć „%s”). " - "Nadal utworzyć nowy błąd?" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "Tworzenie nowego błędu" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "Nieprawidłowy format pliku: %s" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "Sformatowanie danych problemu się nie powiodło" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "Dodawanie zewnętrznego adresu URL do błędu" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "Dodawanie załączników do błędu %i" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "Nieprawidłowy podwójny pliku formatu: %s" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - "Sformatowanie podwójnego komentarza z danych problemu się nie powiodło" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "Dodawanie nowego komentarza do błędu %d" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - "Odnaleziono taki sam komentarz w historii błędu, nowy nie zostanie dodany" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "Stan: %s%s%s %s/view.php?id=%u" -@@ -2289,26 +2300,35 @@ msgid "" - "You can create bugs.centos.org account <a href=\"https://bugs.centos.org/" - "signup_page.php\">here</a>" - msgstr "" --"Można utworzyć konto w witrynie bugs.centos.org pod tym adresem" -+"Można utworzyć konto w witrynie bugs.centos.org <a href=\"https://bugs." -+"centos.org/signup_page.php\">pod tym adresem</a>" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:7 - msgid "CentOS Bug Tracker account password" --msgstr "hasło konta w systemie śledzenia błędów projektu CentOS" -+msgstr "Hasło konta w systemie śledzenia błędów projektu CentOS" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 -+msgid "Restric access" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 - msgid "CentOS Bug Tracker URL" - msgstr "Adres URL systemu śledzenia błędów projektu CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "Adres serwera systemu śledzenia błędów projektu CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "Projekt systemu śledzenia błędów projektu CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" -@@ -2316,11 +2336,11 @@ msgstr "" - "Należy to podać tylko, jeśli wymagany jest projekt inny niż podany w pliku /" - "etc/os-release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "Wersja projektu systemu śledzenia błędów projektu CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" -@@ -2328,15 +2348,6 @@ msgstr "" - "Należy to podać tylko, jeśli wymagana jest wersja projektu inna niż podana w " - "pliku /etc/os-release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" --"Ogranicza dostęp do utworzonego zgłoszenia w systemie śledzenia błędów " --"projektu CentOS, umożliwiając wyświetlanie go tylko użytkownikom z podanych " --"grup (więcej informacji znajduje się w zaawansowanych ustawieniach)" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2463,7 +2474,7 @@ msgstr "Wysyłanie zgłoszeń" - - #: ../src/plugins/report_Uploader.xml.in.h:2 - msgid "Upload as tar.gz file (via FTP/SCP/...)" --msgstr "Wysyła jako plik tar.gz (przez FTP/SCP/...)" -+msgstr "Wysyła jako plik tar.gz (przez FTP/SCP/…)" - - #: ../src/plugins/report_Uploader.xml.in.h:3 - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:3 -@@ -2504,6 +2515,22 @@ msgstr "Pośrednik FTP" - msgid "Sets the proxy server to use for FTP" - msgstr "Ustawia serwer pośrednika do użycia dla FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2559,7 +2586,7 @@ msgstr "Dodaje adres e-mail do listy CC błędu w Bugzilli" - #: ../src/plugins/rhbz.c:382 - #, c-format - msgid "Looks like corrupted xml response, because '%s' member is missing." --msgstr "Wygląda na uszkodzoną odpowiedź XML, ponieważ brak elementu \"%s\"." -+msgstr "Wygląda na uszkodzoną odpowiedź XML, ponieważ brak elementu „%s”." - - #: ../src/plugins/rhbz.c:470 - #, c-format -@@ -2573,7 +2600,7 @@ msgstr "" - "Błąd %i jest ZAMKNIĘTY jako DUPLIKAT, ale nie posiada " - "IDENTYFIKATORA_DUPLIKATU" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2583,19 +2610,19 @@ msgstr "" - "Więcej informacji można znaleźć na stronie https://github.com/abrt/abrt/wiki/" - "FAQ#creating-private-bugzilla-tickets" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Identyfikator nowego błędu: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla nie może odnaleźć nadrzędnego błędu %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" --msgstr "Wartość zwrotna Bug.search(quicksearch) nie zawiera elementu \"bugs\"" -+msgstr "Wartość zwrotna Bug.search(quicksearch) nie zawiera elementu „bugs”" - - #: ../src/plugins/mantisbt.c:123 - #, c-format -@@ -2701,7 +2728,7 @@ msgstr "SOAP: przetworzenie kodu XML się nie powiodło." - #: ../src/plugins/mantisbt.c:528 - msgid "SOAP: Failed to parse xml (get related to issue)." - msgstr "" --"SOAP: przetworzenie kodu XML się nie powiodło (\"get\" związane z błędem)." -+"SOAP: przetworzenie kodu XML się nie powiodło („get” związane z błędem)." - - #: ../src/plugins/mantisbt.c:645 - msgid "Url or request isn't specified." -@@ -2710,54 +2737,54 @@ msgstr "Nie podano adresu URL lub żądania." - #: ../src/plugins/mantisbt.c:673 - #, c-format - msgid "Error in HTTP POST, HTTP code: 404 (Not found), URL:'%s'" --msgstr "Błąd w HTTP POST, kod HTTP: 404 (nie odnaleziono), adres URL: \"%s\"" -+msgstr "Błąd w HTTP POST, kod HTTP: 404 (nie odnaleziono), adres URL: „%s”" - - #: ../src/plugins/mantisbt.c:697 - #, c-format - msgid "Error in MantisBT request at '%s': %s" --msgstr "Błąd w żądaniu MantisBT w \"%s\": %s" -+msgstr "Błąd w żądaniu MantisBT w „%s”: %s" - - #: ../src/plugins/mantisbt.c:699 - #, c-format - msgid "Error in MantisBT request at '%s'" --msgstr "Błąd w żądaniu MantisBT w \"%s\"" -+msgstr "Błąd w żądaniu MantisBT w „%s”" - - #: ../src/plugins/mantisbt.c:741 - #, c-format - msgid "Failed to attach file: '%s'" --msgstr "Dołączenie pliku się nie powiodło: \"%s\"" -+msgstr "Dołączenie pliku się nie powiodło: „%s”" - - #: ../src/plugins/mantisbt.c:760 - #, c-format - msgid "Can't lseek '%s'" --msgstr "Nie można wykonać lseek na \"%s\"" -+msgstr "Nie można wykonać lseek na „%s”" - - #: ../src/plugins/mantisbt.c:766 - #, c-format - msgid "Can't upload '%s', it's too large (%llu bytes)" --msgstr "Nie można wysłać \"%s\", jest za duże (bajty: %llu)" -+msgstr "Nie można wysłać „%s”, jest za duże (bajty: %llu)" - - #: ../src/plugins/mantisbt.c:776 - #, c-format - msgid "Can't read '%s'" --msgstr "Nie można odczytać \"%s\"" -+msgstr "Nie można odczytać „%s”" - - #: ../src/plugins/mantisbt.c:792 - #, c-format - msgid "Can't open '%s'" --msgstr "Nie można otworzyć \"%s\"" -+msgstr "Nie można otworzyć „%s”" - - #: ../src/plugins/mantisbt.c:859 - #, c-format - msgid "Failed to search MantisBT issue by duphash: '%s'" - msgstr "" - "Wyszukanie błędu w serwisie MantisBT według sumy duplikatu się nie powiodło: " --"\"%s\"" -+"„%s”" - - #: ../src/plugins/mantisbt.c:903 - #, c-format - msgid "Failed to search MantisBT duplicate issue: '%s'" --msgstr "Wyszukanie duplikatu błędu w serwisie MantisBT się nie powiodło: \"%s\"" -+msgstr "Wyszukanie duplikatu błędu w serwisie MantisBT się nie powiodło: „%s”" - - #: ../src/plugins/mantisbt.c:930 - #, c-format -@@ -2765,23 +2792,23 @@ msgid "" - "MantisBT doesn't contain custom field '%s', which is required for full " - "functionality of the reporter. Do you still want to create a new issue?" - msgstr "" --"Serwis MantisBT nie zawiera pola użytkownika \"%s\", które jest wymagane do " -+"Serwis MantisBT nie zawiera pola użytkownika „%s”, które jest wymagane do " - "pełnej funkcjonalności mechanizmu zgłaszania. Nadal utworzyć nowy błąd?" - - #: ../src/plugins/mantisbt.c:954 - #, c-format - msgid "Failed to get custom fields for '%s' project" --msgstr "Uzyskanie pola użytkownika dla projektu \"%s\" się nie powiodło" -+msgstr "Uzyskanie pola użytkownika dla projektu „%s” się nie powiodło" - - #: ../src/plugins/mantisbt.c:998 - #, c-format - msgid "Failed to create a new issue: '%s'" --msgstr "Utworzenie nowego błędu się nie powiodło: \"%s\"" -+msgstr "Utworzenie nowego błędu się nie powiodło: „%s”" - - #: ../src/plugins/mantisbt.c:1024 - #, c-format - msgid "Failed to get MantisBT issue: '%s'" --msgstr "Uzyskanie błędu w serwisie MantisBT się nie powiodło: \"%s\"" -+msgstr "Uzyskanie błędu w serwisie MantisBT się nie powiodło: „%s”" - - #: ../src/plugins/mantisbt.c:1038 - #, c-format -@@ -2798,7 +2825,7 @@ msgstr "" - #: ../src/plugins/mantisbt.c:1083 - #, c-format - msgid "Failed to add MantisBT issue note: '%s'" --msgstr "Dodanie uwagi do błędu w serwisie MantisBT się nie powiodło: \"%s\"" -+msgstr "Dodanie uwagi do błędu w serwisie MantisBT się nie powiodło: „%s”" - - #: ../src/plugins/mantisbt.c:1097 - msgid "The MantisBT project has not been deretmined." -@@ -2808,39 +2835,39 @@ msgstr "Nie ustalono projektu MantisBT." - msgid "Failed to get project id from name" - msgstr "Uzyskanie identyfikatora projektu z nazwy się nie powiodło" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Podaje adres URL serwera" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Zezwala na niezabezpieczone połączenie do serwera uReport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Użycie uwierzytelniania klienta" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "Użycie uwierzytelniania HTTP" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" --msgstr "Dodatkowe pliki dołączone do klucza \"auth\"" -+msgstr "Dodatkowe pliki dołączone do klucza „auth”" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "suma-bt uReportu do dołączenia (w konflikcie z -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "dołącza sumę-bt z reported_to (w konflikcie z -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "kontaktowy adres e-mail (wymaga -a|-A, w konflikcie z -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2848,27 +2875,51 @@ msgstr "" - "kontaktowy adres e-mail ze środowiska lub pliku konfiguracji (wymaga -a|-A, " - "w konflikcie z -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "dołącza błąd RHBZ (wymaga -a|-A, w konflikcie z -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "dołącza błąd RHBZ z reported_to (wymaga -a|-A, w konflikcie z -b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "dołącza krótki tekst (wymaga -a|-A, w konflikcie z -D)" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "dołącza krótki tekst z komentarza (wymaga -a|-A, w konflikcie z -d)" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2876,64 +2927,66 @@ msgid "" - "\n" - "Reads the default configuration from " - msgstr "" --"& [-v] [-c PLIK] [-u URL] [-k] [-t ŹRÓDŁO] [-h DANE_UWIERZYTELNIAJĄCE]\n" --" [-A -a suma-bt -B -b id-błędu -E -e e-mail -O -o komentarz] [-d KATALOG]\n" --"& [-v] [-c PLIK] [-u URL] [-k] [-t ŹRÓDŁO] [-h DANE_UWIERZYTELNIAJĄCE]\n" --" [-i ELEMENTY_UWIERZYTELNIANIA] [-d KATALOG]\n" --"\n" --"Wysyła mikrozgłozenie lub dodaje załącznik do mikrozgłoszenia\n" --"\n" --"Odczytuje domyślną konfigurację z " - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Ten problem nie posiada przypisanego uReportu." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Ten problem nie został zgłoszony w serwisie Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" --msgstr "Nie można odnaleźć identyfikatora błędu w adresie URL Bugzilli \"%s\"" -+msgstr "Nie można odnaleźć identyfikatora błędu w adresie URL Bugzilli „%s”" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" --msgstr "Nie można przetworzyć identyfikatora błędu z adresu URL Bugzilli \"%s\"" -+msgstr "Nie można przetworzyć identyfikatora błędu z adresu URL Bugzilli „%s”" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" --msgstr "Nie można dołączyć komentarza z pliku \"comment\"" -+msgstr "Nie można dołączyć komentarza z pliku „comment”" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" --msgstr "Plik \"comment\" jest pusty" -+msgstr "Plik „comment” jest pusty" -+ -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" --"Nie ustawiono zmiennej środowiskowej \"uReport_ContactEmail\", ani opcji " --"konfiguracji \"ContactEmail\"" -+"Nie ustawiono zmiennej środowiskowej „uReport_ContactEmail”, ani opcji " -+"konfiguracji „ContactEmail”" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - "Należy podać identyfikator błędu, kontaktowy adres e-mail, komentarz lub " - "wszystko powyższe" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Należy podać sumę-bt uReportu do dołączenia." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Pusty uReport nie zostanie wysłany" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Ten problem został już zgłoszony." - -diff --git a/po/pt.po b/po/pt.po -index c3c5957..ccd77df 100644 ---- a/po/pt.po -+++ b/po/pt.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/pt/)\n" - "Language: pt\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -177,46 +177,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "A extrair cpio de {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Incapaz de escrever para '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Incapaz de extrair pacote '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "A criar cache de ficheiros de {0} criados de {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Incapaz de extrair ficheiros de '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Incapaz de remover '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "A transferir ({0} of {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -224,118 +221,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "A procurar por pacotes necessários nos repositórios" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Incapaz de encontrar pacotes para {0} ficheiros debuginfo" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Pacotes a transferir: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "A transferir {0:.2f}Mb, tamanho instalado: {1:.2f}Mb. Continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Transferência cancelada pelo utilizador" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "A transferência do pacote {0} falhou" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Desempacotagem falhou. A abortar a transferência..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "A remover {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Erro ao inicializar yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Incapaz de preparar {0}: {1}, a desactivar" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Erro ao obter metados: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Erro ao obter lista de ficheiros: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -384,7 +388,7 @@ msgstr "Eventos" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -410,7 +414,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -489,7 +493,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Ficheiro GUI alternativo" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -498,53 +502,53 @@ msgstr "" - "É necessário um directório gravável, mas '%s' não é gravável. Movê-lo para " - "'%s' e operar nos dados movidos?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Ver/editar um ficheiro de texto" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(Clique aqui para ver/editar)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(ficheiro binário, %llu bytes)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(sem descrição)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bytes, %u ficheiros" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -553,7 +557,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -561,7 +565,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -573,174 +577,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Não está definido processamento para o evento '%s'" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' não é um ficheiro comum" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Esta a tentar copiar um ficheiro para si próprio" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Incapaz de copiar '%s': %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Item '%s' já existe e não é modificável" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Incluir" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nome" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Valor" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Descrição do problema" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Forneça informação adicional" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Rever os dados" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Confirme os dados a reportar" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detalhes" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -789,26 +774,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -819,7 +784,7 @@ msgstr "" - "recolhidos, e para escolher onde o problema deve ser reportado. Carregue em " - "'Seguinte' para prosseguir." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -829,11 +794,11 @@ msgstr "" - "reproduzido? Qualquer comentário adicional útil para diagnosticar o " - "problema? Utilize Inglês, se possível." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Precisa de preencher o como antes de poder prosseguir..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -841,31 +806,31 @@ msgstr "" - "Os seus comentários não são privados. Eles podem ser incluídos em " - "relatórios de problemas visíveis publicamente." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Não sei o que causou este problema" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Tamanho:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Anexar um ficheiro" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Eu revi os dados e concordo em envi_á-los" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -876,19 +841,19 @@ msgstr "" - "tipicamente precisam de ser examinados incluem traçagens reversas, linhas de " - "comandos, variáveis de ambiente." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Apresentar registo" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "O envio de relatórios terminou. Pode fechar esta janela." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -898,16 +863,15 @@ msgstr "" - "adicional, ou forneça uma melhor descrição do problema e repita o processo, " - "carregando em 'Seguinte'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -933,89 +897,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "s" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Enviado: %llu de %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "A enviar %s para %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s enviado com sucesso para %s" -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Valor obrigatório em falta" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Caractere utf8 '%c' inválido" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Número '%s' inválido" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Valor booleano '%s' inválido" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "tipo de opção não suportada" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1023,84 +1028,109 @@ msgstr "" - "A traçagem está incompleta. Por favor, tenha a certeza que fornece os passos " - "para reproduzir." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Relatório desactivado porque a traçagem não é utilizável." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "A resposta de '%s' tem um formato inválido" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Falhou a submissão do problema" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1131,21 +1161,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1228,49 +1271,69 @@ msgid "Bugzilla account password" - msgstr "Senha da conta Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Acesso restrito" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Grupos" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL do Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Endereço do servidor Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Verificar SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Verificar validade da chave SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1279,8 +1342,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP Proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1289,8 +1352,8 @@ msgstr "HTTP Proxy" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1299,8 +1362,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "HTTPS Proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1309,27 +1372,6 @@ msgstr "HTTPS Proxy" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Acesso restrito" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Grupos" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1369,13 +1411,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1390,7 +1432,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1405,7 +1447,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1440,159 +1482,200 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Ficheiro de configuração (pode ser inserido várias vezes)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Anexar FICHEIROs [ao erro com este ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Ao criar um erro, anexe também ficheiros binários" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Forçar o relatório mesmo que este problema já tenha sido reportado" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "A terminar sessão" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "A verificar por duplicados" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "A criar um novo erro" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "A adicionar anexo ao erro %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Erro já foi reportado: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Adicionar novo comentário ao erro %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "A anexar uma traçagem melhor" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Foi encontrado o mesmo comentário no histórico do erro. Não será adicionado " - "novamente" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Estado: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1627,7 +1710,7 @@ msgstr "" - "Parâmetros podem ser sobrepostos através de $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Ficheiro de configuração" - -@@ -1657,12 +1740,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "A enviar E-mail..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Foi enviado um email para: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1676,11 +1759,11 @@ msgstr "" - "\n" - "Se não especificado, o valor por omissão de CONFFIC é " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Ficheiro de configuração" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1715,34 +1798,34 @@ msgstr "Cancelado pelo utilizador." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Incapaz de abrir '%s' para escrita. Seleccione outro ficheiro:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "O relatório foi anexado a %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "O relatório foi armazenado em %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Ainda deseja criar um ticket RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1751,77 +1834,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Enviar FICHEIROs [ao erro com este ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "A anexar '%s' ao caso '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "A comprimir dados" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1834,41 +1921,49 @@ msgstr "Documentação que poderá ser relevante: " - msgid "Updates which possibly help: " - msgstr "Actualizações que poderão ajudar: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Foi criado o arquivo: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "URL base para enviar para" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1885,7 +1980,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1928,48 +2023,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1977,47 +2072,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2053,39 +2148,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2249,6 +2347,22 @@ msgstr "FTP Proxy" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2315,24 +2429,24 @@ msgstr "O erro %i está FECHADO, mas não tem RESOLUÇÃO" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "O erro %i está FECHADO como DUPLICADO, mas não tem DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Novo ID de erro: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla não encontra o pai do erro %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2525,65 +2639,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2592,51 +2730,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/pt_BR.po b/po/pt_BR.po -index e14bbb6..6050d0a 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -13,21 +13,22 @@ - # Marina Vieira , 2012-2013 - # Ramilton Costa Gomes Junior , 2013 - # Ricardo Gyorfy , 2011 -+# Marco Aurélio Krause , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-06 07:45-0400\n" --"Last-Translator: Jakub Filak \n" -+"PO-Revision-Date: 2015-10-27 02:21-0400\n" -+"Last-Translator: Marco Aurélio Krause \n" - "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" - "libreport/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.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -191,86 +192,85 @@ msgstr "Selecione um evento para executar:" - msgid "Select a workflow to run: " - msgstr "Selecione um workflow para executar:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Extraindo cpio de {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Não foi possível gravar em '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Não foi possível extrair pacote '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Obtendo arquivos de {0} feitos a partir de {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Não foi possível extrair arquivos de '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" -+"Não foi possível extrair arquivos de '{0}'. Para obter mais informações, " -+"consulte '{1}'" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Não foi possível remover '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Baixando o ({0} de {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" --msgstr "" -+msgstr "Inicializando o gerenciador de pacotes" - - #. if verbose == 0: - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" --msgstr "" -+msgstr "Configurando repositorios" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Procurando por pacotes necessários nos repositórios" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Não é possível encontrar pacotes para os arquivos {0} debuginfo" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Pacotes para baixar: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Baixando {0:.2f}Mb, tamanho instalado: {1:.2f}Mb. Continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Baixar cancelado pelo usuário" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -278,7 +278,7 @@ msgstr "" - "Aviso: Não há espaço suficiente no tmp dir '{0}' ({1:.2f}Mb esquerda). " - "Continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -287,38 +287,45 @@ msgstr "" - "Aviso: Não há espaço suficiente no cache dir '{0} \"({1: 0,2 f} Mb esquerda)." - " Continuar?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Download de pacote {0} falhou" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Desempacotamento falhou, abortando download..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Removendo {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" --msgstr "" -+msgstr "Não é possível remover {0}, provavelmente contém um erro de log" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" --msgstr "" -+msgstr "Erro ao ler a configuração do repositório: '{0!s}'" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" --msgstr "" -+msgstr "Erro ao configurar o repositório: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -326,38 +333,38 @@ msgstr "" - "Problema '{0!s}' ocorreu durante a transferência a partir do espelho: " - "'{1!s}'. Tentando o próximo" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Erro ao inicializar o yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Erro: não pode fazer cachedir, saindo" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Impossível desabilitar o repositório '{0 s!}': {1 s!}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Não foi possível desabilitar o download assíncrono, a saída pode conter " - "artefatos!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Não foi possível configurar {0}: {1}, desabilitando" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Erro ao recuperar metadados: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Erro ao recuperar listas de arquivo: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "Não é possível copiar o arquivo '{0}': {1}" -@@ -406,7 +413,7 @@ msgstr "Eventos" - msgid "C_onfigure" - msgstr "C_onfigurar" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Fechado" - -@@ -420,7 +427,7 @@ msgstr "Não armazenar senhas" - - #: ../src/gtk-helpers/event_config_dialog.c:285 - msgid "Basic" --msgstr "" -+msgstr "Básico" - - #: ../src/gtk-helpers/event_config_dialog.c:293 - msgid "Advanced" -@@ -433,7 +440,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Cancelar" - -@@ -495,19 +502,19 @@ msgstr "" - - #: ../src/gtk-helpers/problem_details_dialog.c:30 - msgid "Problem details" --msgstr "" -+msgstr "Detalhes do problema" - - #: ../src/gtk-helpers/problem_details_dialog.c:33 - msgid "OK" --msgstr "" -+msgstr "OK" - - #: ../src/gui-wizard-gtk/main.c:107 - msgid "Preferences" --msgstr "" -+msgstr "Preferências" - - #: ../src/gui-wizard-gtk/main.c:110 - msgid "Quit" --msgstr "" -+msgstr "Sair" - - #: ../src/gui-wizard-gtk/main.c:154 - msgid "" -@@ -524,7 +531,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Arquivo GUI alternativo" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -533,15 +540,15 @@ msgstr "" - "É necessário o diretório gravável, mas '%s' não é gravável. Mova-o para '%s' " - "e opere em dados modificados?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Visualizar/editar um arquivo de texto" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "_Salvar" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -549,39 +556,39 @@ msgstr "" - "Nenhum destino está definido para relatar esse problema. Cheque a " - "configuração em /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(depende de: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(não é necessário, dados já existem: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(clique aqui para ver/editar)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(arquivo binário, %llu bytes)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(sem descrição)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu bytes, %u arquivos" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "O processamento foi cancelado" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -589,16 +596,25 @@ msgid "" - "\t▫ corrupted problem data\n" - "\t▫ invalid configuration" - msgstr "" -+"Processamento do problema falhou. Isto pode ter acontecido por diversas " -+"razões mas existem três mais comuns:\n" -+"\t▫ problemas com a conexão de rede\n" -+"\t▫ dados do problema corrompidos\n" -+"\t▫ configuração inválida" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" - "in the application menu and after applying the configuration changes click " - "Repeat button." - msgstr "" -+"Se você deseja atualizar a configuração e tentar relatar novamente, por " -+"favor abra Preferências\n" -+"no menu do aplicativo e depois de aplicar as mudanças de configuração clique " -+"em Repetir" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -610,79 +626,54 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "O processamento foi interrompido porque o problema não é reportável." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "O processamento falhou" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Processamento finalizado" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Processamento finalizado, por favor proceda à próxima etapa." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Nenhum processamento para o evento '%s' está definido" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Processamento interrompido: não é possível continuar sem uma pasta com " - "permissão de escrita." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Processando..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+"Dados sensíveis possíveis detectados, sinta-se a vontade para editar o " -+"relatório e removê-los." -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Não é possível checar a avaliação do backtrace devido a um nome de evento " - "inválido" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -692,101 +683,109 @@ msgstr "" - "confidenciais.\n" - "Você deseja continuar?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Esse problema não deveria ser relatado (parece ser um problema conhecido). " - "%s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Abrir" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' não é um arquivo comum" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Você está tentando copiar um arquivo nele mesmo." - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Não é possível copiar '%s': %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "O item '%s' já existe e não é modificável" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Incluir" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Nome: " - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Valor" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Descrição do Problema" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Selecione como relatar esse problema" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Fornecer informações adicionais" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Revisar os dados" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Confirmar dados para reportar" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Processando" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Processamento feito" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "_Parar" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Enviar para análise" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" --msgstr "" -+msgstr "Repetir" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Avançado" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detalhes" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Acesso restrito a este relatório" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -794,6 +793,11 @@ msgid "" - "\n" - "su -c \"yum install fros-recordmydesktop\"" - msgstr "" -+"Para habilitar a função de screencasting embutida o pacote fros-" -+"recordmydesktop precisa ser instalada. Por favor execute o seguinte comando " -+"caso queira instalá-lo.\n" -+"\n" -+"su -c \"yum install fros-recordmydesktop\"" - - #: ../src/gui-wizard-gtk/wizard.glade.h:1 - msgid "" -@@ -813,52 +817,31 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:3 - msgid "Sensitive words" --msgstr "" -+msgstr "palavras sensíveis" - - #: ../src/gui-wizard-gtk/wizard.glade.h:4 - msgid "Custom" --msgstr "" -+msgstr "Personalizado" - - #: ../src/gui-wizard-gtk/wizard.glade.h:5 - msgid "Clear the search bar to see the list of security sensitive words." - msgstr "" -+"Limpar a barra de busca para ver a lista de palavras sensíveis de segurança." - - #: ../src/gui-wizard-gtk/wizard.glade.h:6 - msgid "file" --msgstr "" -+msgstr "arquivo" - - #: ../src/gui-wizard-gtk/wizard.glade.h:7 - msgid "data" --msgstr "" -+msgstr "dado" - - #: ../src/gui-wizard-gtk/wizard.glade.h:8 - msgid "Search" --msgstr "" -+msgstr "Pesquisar" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Acesso restrito a este relatório" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Ninguém exceto membros do grupo Fedora Contrib terá permissão para ver o " --"relatório com acesso restrito (nem mesmo você)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Leia mais sobre relatório com acesso restrito" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -869,7 +852,7 @@ msgstr "" - "revisar os dados coletados e para escolher onde o problema deve ser " - "reportado. Clique em 'Encaminhar' para proceder." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -879,11 +862,11 @@ msgstr "" - "Qualquer comentário extra útil para diagnosticar o problema? Por favor use o " - "idioma Inglês se possível." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Você precisa preencher antes de continuar..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -891,31 +874,31 @@ msgstr "" - "Seus comentários não são privados.<\\b> Eles podem ser incluídos em " - "relatos de problemas publicamente visíveis." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Se você não sabe como descrevê-lo, você pode" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "Adicionar um screencast" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Eu não sei o que causou o problema" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Tamanho:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Anexar um arquivo" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Eu revisei os dados e _concordo em submetê-lo" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -926,19 +909,19 @@ msgstr "" - "Rastreamento, linha de comando, variáveis de ambiente são ítens típicos que " - "precisam ser examinados." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "O processamento ainda não foi iniciado" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Exibir log" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "O relatório foi finalizado. Você pode fechar esta janela agora." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -948,16 +931,15 @@ msgstr "" - "adicionais ou forneça uma descrição melhor do problema e repita o processo " - "de relatório, pressione 'Encaminhar'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Detalhado" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Diretório do problema" - -@@ -983,78 +965,119 @@ msgstr "não é um diretório do problema" - msgid "Can't delete '%s': %s" - msgstr "Não foi possível apagar '%s': %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Faltando item necessário: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "O valor uid não é válido: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Faltando item necessário: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Enviado: %llu de %llu kbytes" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Enviando %s ao %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Enviado com sucesso %s ao %s" -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Faltando valor obrigatório" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Caractere utf8 '%c' inválido" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Número inválido '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Valor boleano inválido '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Tipo de opção não suportada" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1063,12 +1086,12 @@ msgstr "" - "O problema não pode ser relatado devido a um dado inválido. O arquivo '%s' " - "não contém um número." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - "Por favor relate esse problema para os desenvolvedores do projeto ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1076,17 +1099,17 @@ msgstr "" - "O backtrace está incompleto. Por favor, certifique-se de fornecer bons " - "passos para a reprodução. " - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "O backtrace provavelmente não pode ajudar o desenvolvedor a diagnosticar o " - "bug." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Relatório desabilitado, porque o backtrace está inutilizado." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1095,13 +1118,28 @@ msgstr "" - "Por favor tente instalar o debuginfo manualmente utilizando o comando: " - "\"debuginfo-install %s\" e tente novamente." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "O debuginfo adequado provavelmente está faltando ou o arquivo do travamento " - "está corrompido." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1110,26 +1148,36 @@ msgstr "Seu problema parece ser causado por %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Seu problema parece ser causado por um dos seguintes:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "Falha ao enviar uReport para o servidor '%s' com curl: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "A URL '%s' não existe (recebido erro 404 do servidor)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "O servidor em '%s' encontrou um erro interno (recebido erro 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" -@@ -1137,33 +1185,33 @@ msgstr "" - "503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "Resposta HTTP inesperada de '%s': %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "Incapaz de analisar a resposta do servidor ureport em '%s'" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "A resposta de '%s' tem um formato inválido" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "Incompatibilidade de tipo foi detectada na reposta de '%s'" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Falha ao enviar o problema" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "O servidor em '%s' respondeu com um erro: '%s'" -@@ -1174,7 +1222,7 @@ msgstr "Relatado:" - - #: ../src/lib/make_descr.c:149 - msgid "cannot be reported" --msgstr "" -+msgstr "não pode ser reportado" - - #: ../src/lib/parse_options.c:63 - msgid "Usage: " -@@ -1194,21 +1242,34 @@ msgstr "Não foi possível analisar o backtrace: %s" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "Não é possível gerar pilha descrição trace (sem segmento colidir?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' foi morto pelo sinal %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' concluído com sucesso)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' saiu com %u)\n" -@@ -1295,32 +1356,57 @@ msgid "Bugzilla account password" - msgstr "Senha da conta do Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Acesso restrito" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Restringir o acesso ao ticket criado no bugzilla permitindo apenas que " -+"usuários de grupos específicos o vejam (veja as configurações avançadas para " -+"mais detalhes)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Grupos" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Restringir o acesso a grupos específicos <a href=\"https://github.com/" -+"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "URL do Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Endereço do servidor Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Verificar o SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Verifique a validade da chave SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Produto Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1328,11 +1414,11 @@ msgstr "" - "Especifique isto apenas se você precisar de um produto diferente do " - "especificado em /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Versão do produto Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1340,8 +1426,8 @@ msgstr "" - "Especifique isto apenas se você precisar de um produto diferente do " - "especificado em /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1350,8 +1436,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "Proxy HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1360,8 +1446,8 @@ msgstr "Proxy HTTP" - msgid "Sets the proxy server to use for HTTP" - msgstr "Configura o servidor proxy para usar HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1370,8 +1456,8 @@ msgstr "Configura o servidor proxy para usar HTTP" - msgid "HTTPS Proxy" - msgstr "Proxy HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1380,32 +1466,6 @@ msgstr "Proxy HTTPS" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Configura o servidor proxy para usar HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Acesso restrito" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Restringir o acesso ao ticket criado no bugzilla permitindo apenas que " --"usuários de grupos específicos o vejam (veja as configurações avançadas para " --"mais detalhes)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Grupos" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Restringir o acesso a grupos específicos <a href=\"https://github.com/" --"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1446,13 +1506,13 @@ msgstr "" - "cmdline, ignorando a variável e configuração env" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Não é possível continuar sem realizar login" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Não é possível continuar sem senha" -@@ -1467,7 +1527,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "Usuário ou senha inválidos. Por favor digite seu login Bugzilla:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "Usuário ou senha inválidos. Por favor digite a sua senha para '%s':" -@@ -1482,7 +1542,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1516,109 +1576,91 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Relata problemas ao Bugzilla.\n" --"\n" --"A ferramenta lê DIR. Então faz login no Bugzilla e tenta encontrar um bug\n" --"com o mesmo abrt_hash:HEXSTRING no 'Quadro Branco'.\n" --"\n" --"Se esse bug não é encontrado, então um novo bug é criado. Elementos do DIR\n" --"são armazenados no bug como parte da descrição do erro ou como anexos,\n" --"dependendo do seu tipo e tamanho.\n" --"\n" --"Porém se esse bug é encontrado e está marcado como CLOSED DUPLICATE,\n" --"a ferramenta segue a corrente de duplicatas até encontrar um bug não " --"duplicata.\n" --"A ferramenta adiciona um novo comentário ao bug encontrado.\n" --"\n" --"A URL do novo ou modificado bug é impressa no stdout e salva no\n" --"elemento 'reported_to'.\n" --"\n" --"Opção -t envia ARQUIVOs para um bug já criado no site do Bugzilla.\n" --"O ID do bug é retornado da pasta especificada por -d DIR.\n" --"Se os dados do problema no DIR nunca foram relatados, o envio falhará.\n" --"\n" --"Opção -tlD envia ARQUIVOs para o bug com o ID especificado no site do " --"bugzilla.\n" --"-d DIR é ignorado.\n" --"\n" --"Opção -w adiciona o usuário do Bugzilla para a lista CC do bug. \n" --"\n" --"Caso não seja especificado, padrão CONFFILE" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Arquivo de configuração (pode ser mencionado várias vezes)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Formatando arquivo para comentário inicial" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Formatando arquivos para duplicatas" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Anexar FILEs [ao bug com esta ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Ao criar o bug, anexe também os arquivos binários." - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Forçar reportar até mesmo se este problema já for reportado." - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "Adicionar usuário do bugzilla para a lista CC [do bug com esse ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Gravar BUG_ID que deu DUPHASH" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "Um nome de bug rastreado para uma URL adicional de 'reported_to'" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Acesso restrito a este grupo apenas" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Depurar" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Procurando por problemas similares no bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" --"O login não é fornecido pela configuração. Por favor digite seu login do Bugzilla:" -+"O login não é fornecido pela configuração. Por favor digite seu login do " -+"Bugzilla:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1627,7 +1669,7 @@ msgstr "" - " A senha não foi fornecida pela configuração. Por favor entre com a senha " - "para '%s':" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1635,7 +1677,7 @@ msgstr "" - "Não foi possível obter o ID do Bugzilla por que o problema ainda não foi " - "relado ao Bugzilla." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1644,76 +1686,98 @@ msgstr "" - "Esse problema foi relatado para o Bugzilla '%s' que é diferente do Bugzilla " - "'%s' configurado." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Url disforme para o Bugzilla '%s'." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Utilizando o ID do Bugzilla '%s'" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Saindo" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "Não foi possível determinar o Produto Bugzilla dos dados do problema." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Verificando por duplicados" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Criando um novo bug" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Falha ao criar novo bug." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Adicionando URL Externa para bug %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Adicionar anexos no bug %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "O bug já foi relatado: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "Adicionando %s para a lista CC" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Adicionar novo comentário ao bug %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Anexar um backtrace melhor" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "Encontrar o mesmo comentário no histórico do erro, sem adicionar um novo" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Status: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1748,7 +1812,7 @@ msgstr "" - "O parâmetro pode ser sobrescrito via $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Arquivo de configuração" - -@@ -1774,18 +1838,18 @@ msgstr "Não é possível continuar sem endereço de e-mail %s" - #: ../src/plugins/reporter-mailx.c:136 - #, c-format - msgid "Sending a notification email to: %s" --msgstr "" -+msgstr "Enviando um e-mail de notificação para: %s" - - #: ../src/plugins/reporter-mailx.c:138 - msgid "Sending an email..." - msgstr "Enviando um e-mail..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "O email foi enviado para: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1799,11 +1863,11 @@ msgstr "" - "\n" - "Se não for especificado, o CONFFILE padroniza para" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Arquivo config" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Notifique apenas (Não marque o relatório como enviado)" - -@@ -1839,34 +1903,34 @@ msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - "Não é possível abrir '%s' para gravar. Por favor selecione outro arquivo:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "O relatório foi anexado a %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "O relatório foi armazenado ao %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "O servidor respondeu com um erro: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Você ainda quer criar um tiquete RHTSupport" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" --msgstr "" -+msgstr "Usuário ou senha inválidos. Por favor digite seu login Red Hat:" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1875,80 +1939,87 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Faz Upload FILEs [à pasta com esta ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" --msgstr "" -+msgstr "Submeta o uReport antes de criar um novo caso" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" -+msgstr "Arquivo de configuração para uReport" -+ -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "O login não é fornecido pela configuração. Por favor digite seu login do " - "BHTS:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Anexar '%s' à pasta '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" --msgstr "" -+msgstr "Enviando dados de estatística de travamento do ABRT" -+ -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Não é possível criar um diretório temporário no" - - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Compactando dados" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Não é possível criar um diretório temporário no" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Não é possível criar arquivo temporário no" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Verificando dicas" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Criando um novo caso" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - "Não foi possível determinar o Produto de Suporte RH dos dados do problema." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" -+"Vinculando histórico dos dados de estatística de travamento do ABRT ao caso" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" -+"Vinculando histórico de estatística de travamento do ABRT com o email de " -+"contato: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Adicionando comentário ao caso '%s'" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Anexando dados do problema para o caso '%s'" -@@ -1961,52 +2032,56 @@ msgstr "Documentação que pode ser relevante:" - msgid "Updates which possibly help: " - msgstr "Atualizações que podem ajudar:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Não é possível continuar sem URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" --msgstr "" -+msgstr "Por favor insira a senha para descer:" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Arquivo está criado: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-V] DIR-d [-c ConfFile] [-u URL]\n" --"\n" --"Envios comprimido tarball do diretório problmea DIR para URL.\n" --"Se a URL não for especificado, criar tarball em" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "URL base para fazer upload à" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" - - #: ../src/plugins/reporter-mantisbt.c:86 - msgid "Please enter the password for" --msgstr "" -+msgstr "Por favor insira a senha para" - - #: ../src/plugins/reporter-mantisbt.c:97 - msgid "Credentials are not provided by configuration." -@@ -2016,7 +2091,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2059,48 +2134,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2108,47 +2183,48 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" --msgstr "" -+msgstr "Adicionar novo comentário ao problema %d" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" -+"Encontrar o mesmo comentário no histórico do problema, sem adicionar um novo" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2184,39 +2260,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2382,6 +2461,22 @@ msgstr "Proxy FTP" - msgid "Sets the proxy server to use for FTP" - msgstr "Configura o servidor proxy para utilizar FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2448,7 +2543,7 @@ msgstr "O bug %i está FECHADO, mas não possui RESOLUÇÃO" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "O bug %i está FECHADO como DUPLICADO, mas não possui DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2458,17 +2553,17 @@ msgstr "" - "grupos, por favor veja https://github.com/abrt/abrt/wiki/FAQ#creating-" - "private-bugzilla-tickets para mais informações" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Nova id de bug:%i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "O bugzilla não pôde encontrar a categoria pai do bug %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Bug.search(quicksearch) retornou um valor que não contém o membro 'bugs'" -@@ -2662,39 +2757,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Especifique URL do servidor" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Permitir conexão insegura ao servidor ureport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Usar autenticação de cliente" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "bthash do uReport para anexar (conflita com -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "anexar ao bthash do reported_to (conflita com -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "endereço de e-mail para contato (requer -a|-A, conflita como -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2702,28 +2797,52 @@ msgstr "" - "endereço de e-mail para contato do ambiente ou arquivo de configuração " - "(requer -a|-A, conflita com -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "anexar o erro RHBZ (requer -a|-A, conflita com -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "anexar último erro RHBZ do reported_to (requer -a|-A, conflita com -b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2732,33 +2851,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Esse problema não tem um uReport assinalado." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Este problema não foi relatado ao Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Não foi possível encontrar o ID do bug na url do Bugzilla '%s'" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Não foi possível analisar o ID do bug da url do Bugzilla '%s'" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2766,19 +2895,19 @@ msgstr "" - "Nem a variável do ambiente 'uReport_ContactEmail' nem a opção de " - "configuração 'ContactEmail' está configurada" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Você precisar especificar o bthash do uReport para analisar." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Não enviando um uReport vazio" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Este problema já foi reportado." - -diff --git a/po/ru.po b/po/ru.po -index 66e969e..587d65a 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -19,22 +19,24 @@ - # Yulia , 2011-2012 - # Игорь Горбунов , 2011,2013-2014 - # Леонид Кузин , 2012 -+# yuliya , 2015. #zanata -+# yuliya , 2016. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2014-10-06 07:45-0400\n" --"Last-Translator: Jakub Filak \n" -+"PO-Revision-Date: 2016-02-11 12:02-0500\n" -+"Last-Translator: yuliya \n" - "Language-Team: Russian (http://www.transifex.com/projects/p/libreport/" - "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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -63,7 +65,7 @@ msgstr "Удалить PROBLEM_DIR после отправки отчета" - - #: ../src/cli/cli.c:89 ../src/gui-wizard-gtk/main.c:173 - msgid "Expert mode" --msgstr "Расширенные настройки" -+msgstr "Экспертный режим" - - #: ../src/cli/cli.c:90 ../src/report-newt/report-newt.c:393 - msgid "Display version and exit" -@@ -71,7 +73,7 @@ msgstr "Показать версию и выйти" - - #: ../src/cli/cli.c:91 - msgid "Noninteractive: don't ask questions, assume 'yes'" --msgstr "Автоматически «Да» на все вопросы" -+msgstr "Автоматически отвечать «Да» на все вопросы" - - #: ../src/cli/cli.c:93 - msgid "Log to syslog" -@@ -84,7 +86,7 @@ msgstr "Добавить имена программ в журнал" - #: ../src/cli/cli-report.c:132 - #, c-format - msgid "# This field is read only\n" --msgstr "# Поле доступно только для чтения⏎\n" -+msgstr "# Поле доступно только для чтения\n" - - #: ../src/cli/cli-report.c:152 - msgid "# Describe the circumstances of this crash below" -@@ -115,7 +117,7 @@ msgstr "# Дамп памяти" - - #: ../src/cli/cli-report.c:160 - msgid "# Executable" --msgstr "# Программа" -+msgstr "# Исполняемый файл" - - #: ../src/cli/cli-report.c:161 - msgid "# Kernel version" -@@ -131,15 +133,15 @@ msgstr "# Причина сбоя" - - #: ../src/cli/cli-report.c:170 - msgid "# os-release configuration file from root dir" --msgstr "# файл конфигурации релиза ОС из корневой директории" -+msgstr "# Файл конфигурации os-release из корневого каталога" - - #: ../src/cli/cli-report.c:175 - msgid "# Release string of the operating system from root dir" --msgstr "# Строка выпуска операционной системы из корневой директории" -+msgstr "# Строка выпуска операционной системы из корневого каталога" - - #: ../src/cli/cli-report.c:183 - msgid "# os-release configuration file" --msgstr "# файл конфигурации релиза ОС" -+msgstr "# Файл конфигурации os-release" - - #: ../src/cli/cli-report.c:188 - msgid "# Release string of the operating system" -@@ -168,7 +170,7 @@ msgstr "Неправильный ввод. Причина:" - #: ../src/cli/cli-report.c:475 - #, c-format - msgid "Bad value for '%s': %s" --msgstr "Неверное значение для «%s»: %s" -+msgstr "Недопустимое значение «%s»: %s" - - #: ../src/cli/cli-report.c:673 - #, c-format -@@ -176,7 +178,7 @@ msgid "" - "Event '%s' requires permission to send possibly sensitive data. Do you want " - "to continue?" - msgstr "" --"Событию '%s' требуется разрешение на отправку вероятно конфиденциальных " -+"Событию «%s» требуется разрешение на отправку вероятно конфиденциальных " - "данных. Вы хотите продолжить?" - - #: ../src/cli/cli-report.c:720 -@@ -193,89 +195,88 @@ msgstr "Выберите действие для запуска:" - - #: ../src/cli/cli-report.c:858 - msgid "Select a workflow to run: " --msgstr "Выберите рабочий процесс:" -+msgstr "Выберите рабочий поток:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Извлечение cpio из {0}..." - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Ошибка записи в \"{0}\": {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Не удалось извлечь пакет \"{0}\"." - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" --msgstr "Кэширование файлов из {0}, созданного из {1}" -+msgstr "Кэширование файлов из {0} из {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Не удалось извлечь файлы из \"{0}\"" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" -+"Не удалось извлечь файлы из \"{0}\". За подробной информацией обратитесь к " -+"«{1}»." - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" --msgstr "Не удалось удалить \"{0}\": {1}" -+msgstr "Не удалось удалить \"{0}\": {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Загружается ({0} из {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" --msgstr "" -+msgstr "Инициализация менеджера пакетов" - - #. if verbose == 0: - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" --msgstr "" -+msgstr "Настройка репозиториев" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Поиск обязательных пакетов в репозитории..." - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" --msgstr "Не найдены пакеты для файлов debuginfo (всего файлов: {0})" -+msgstr "Не найдены пакеты для {0} файлов debuginfo" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Пакеты для загрузки: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "Будет загружено {0:.2f} МБ, установленный размер: {1:.2f} МБ. Продолжить?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Загрузка отменена пользователем" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -283,7 +284,7 @@ msgstr "" - "Предупреждение. Недостаточно места во временном каталоге '{0}' (осталось {1:." - "2f} МБ). Продолжить?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -292,38 +293,47 @@ msgstr "" - "Предупреждение. Недостаточно места в '{0}' (осталось {1:.2f} МБ). " - "Продолжить?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Не удалось загрузить пакет {0}" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." --msgstr "Ошибка распаковки. Загрузка отменяется..." -+msgstr "Не удалось распаковать. Загрузка отменяется..." -+ -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+" «{0}» должен принадлежать abrt. Чтобы изменить владельца, выполните «chown -" -+"R abrt.abrt {0}»." - - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Удаление {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" --msgstr "" -+msgstr "Ошибка удаления {0} (возможно, содержит журнал ошибок)" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" --msgstr "" -+msgstr "Ошибка чтения конфигурации репозитория: «{0!s}»" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" --msgstr "" -+msgstr "Ошибка при настройке репозиториев: «{0!s}»" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -331,37 +341,37 @@ msgstr "" - "Произошла ошибка '{0!s}' при загрузке с зеркала '{1!s}'. Попытка продолжить " - "с другим зеркалом..." - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Ошибка инициализации yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" --msgstr "Ошибка: невозможно выполнить cachedir, аварийное завершение" -+msgstr "Ошибка: не удалось создать cachedir. Выход..." - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" --msgstr "Невозможно отключить репозиторий '{0!s}': {1!s}" -+msgstr "Не удалось отключить репозиторий «{0!s}»: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Невозможно отключить асинхронную загрузку, возможны искажения в выводе!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" --msgstr "Не удалось настроить {0}: {1}, отключается" -+msgstr "Не удалось настроить {0}: {1}. Отключается..." - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Ошибка получения метаданных: \"{0!s}\"" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Ошибка получения списка файлов: \"{0!s}\"" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "Не удалось скопировать файл '{0}': {1}" -@@ -398,7 +408,7 @@ msgstr "Конфигурация" - #: ../src/gtk-helpers/config_dialog.c:365 - #: ../src/gtk-helpers/config_dialog.c:430 - msgid "Workflows" --msgstr "Рабочие процессы" -+msgstr "Рабочие потоки" - - #: ../src/gtk-helpers/config_dialog.c:367 - #: ../src/gtk-helpers/config_dialog.c:369 -@@ -410,7 +420,7 @@ msgstr "События" - msgid "C_onfigure" - msgstr "Н_астроить" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Закрыть" - -@@ -424,7 +434,7 @@ msgstr "Не хранить пароли" - - #: ../src/gtk-helpers/event_config_dialog.c:285 - msgid "Basic" --msgstr "" -+msgstr "Основные" - - #: ../src/gtk-helpers/event_config_dialog.c:293 - msgid "Advanced" -@@ -432,11 +442,11 @@ msgstr "Дополнительно" - - #: ../src/gtk-helpers/event_config_dialog.c:309 - msgid "Secret Service is not available, your settings won't be saved!" --msgstr "Secret Service не доступен, Ваши настройки не будут сохранены!" -+msgstr "Secret Service недоступен. Ваши настройки не будут сохранены." - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Отмена" - -@@ -449,13 +459,13 @@ msgstr "_ОК" - #, c-format - msgid "Can't connect over DBus to name '%s' path '%s' interface '%s': %s" - msgstr "" --"Невозможно соединение через DBus к имени '%s' пути '%s'интерфейсу '%s': %s" -+"Невозможно соединение через DBus к имени «%s» пути «%s»интерфейсу «%s»: %s" - - #: ../src/gtk-helpers/secrets.c:191 - #, c-format - msgid "Can't call method '%s' over DBus on path '%s' interface '%s': %s" - msgstr "" --"Невозможно вызвать метод '%s' через DBus по пути '%s' интерфейсу '%s': %s" -+"Невозможно вызвать метод «%s» через DBus по пути «%s» интерфейсу «%s»: %s" - - #: ../src/gtk-helpers/secrets.c:549 - msgid "" -@@ -468,45 +478,45 @@ msgid "" - "Do you want to stop waiting and continue in reporting without properly " - "loaded configuration?" - msgstr "" --"Вы желаете прервать ожидание и продолжить составление отчёта с неверно " --"выгруженной конфигурацией?" -+"Прервать ожидание и продолжить составление отчёта, не дожидаясь загрузки " -+"конфигурации?" - - #: ../src/gtk-helpers/secrets.c:862 - #, c-format - msgid "D-Bus Secrets Service ReadAlias('%s') method failed: %s" --msgstr "D-Bus Secrets Service ReadAlias('%s') метод не сработал: %s" -+msgstr "Ошибка метода D-Bus Secrets Service ReadAlias(«%s»): %s" - - #. if the error wasn't about invalid properties we have an another problem - #: ../src/gtk-helpers/secrets.c:1104 - #, c-format - msgid "Can't create a secret item for event '%s': %s" --msgstr "Не могу создать секретный элемент для события '%s': %s" -+msgstr "Не удалось создать секретный элемент для события «%s»: %s" - - #: ../src/gtk-helpers/secrets.c:1286 - #, c-format - msgid "can't get secret value of '%s': %s" --msgstr "Не могу получить секретное значение '%s': %s" -+msgstr "Не удалось получить секретное значение «%s»: %s" - - #: ../src/gtk-helpers/problem_details_widget.c:191 - #, c-format - msgid "$DATA_DIRECTORY/%s (binary file, %s)" --msgstr "" -+msgstr "$DATA_DIRECTORY/%s (бинарный файл, %s)" - - #: ../src/gtk-helpers/problem_details_dialog.c:30 - msgid "Problem details" --msgstr "" -+msgstr "Сведения о проблеме" - - #: ../src/gtk-helpers/problem_details_dialog.c:33 - msgid "OK" --msgstr "" -+msgstr "ОК" - - #: ../src/gui-wizard-gtk/main.c:107 - msgid "Preferences" --msgstr "" -+msgstr "Настройки" - - #: ../src/gui-wizard-gtk/main.c:110 - msgid "Quit" --msgstr "" -+msgstr "Выход" - - #: ../src/gui-wizard-gtk/main.c:154 - msgid "" -@@ -516,70 +526,71 @@ msgid "" - msgstr "" - "& [-vpdx] [-e EVENT]... [-g GUI_FILE] PROBLEM_DIR\n" - "\n" --"Графическая утилита анализа и сообщения об ошибках хранится в PROBLEM_DIR" -+"Графический инструмент для анализа и создания отчета на основе статистики в " -+"каталоге PROBLEM_DIR" - - #: ../src/gui-wizard-gtk/main.c:169 - msgid "Alternate GUI file" - msgstr "Файл GUI" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" --"Запись в \"%s\" не разрешена. Переместить его в \"%s\" и работать с " --"созданным каталогом?" -+"Запись в «%s» не разрешена. Переместить его в «%s» и работать с данными в " -+"новом месте?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Просмотр/правка файла" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "_Сохранить" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" --"Для данной проблемы не определены отчётные задания. Проверьте конфигурацию в " --"/etc/libreport/*" -+"Для этой проблемы необходимо настроить систему отслеживания. Проверьте " -+"конфигурацию в /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(требуется: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(нет необходимости, данные уже существуют: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(нажмите для просмотра и изменения)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(двоичный файл, %llu байт)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(нет описания)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu Б, файлов: %u" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Обработка была отменена" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -587,16 +598,24 @@ msgid "" - "\t▫ corrupted problem data\n" - "\t▫ invalid configuration" - msgstr "" -+"Попытка обработки ошибки потерпела неудачу. Причин может быть несколько , но " -+"наиболее распространены три:\n" -+" ▫ проблемы с подключением к сети\n" -+" ▫ данные об ошибке повреждены\n" -+" ▫ неверные настройки" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" - "in the application menu and after applying the configuration changes click " - "Repeat button." - msgstr "" -+"Если вы хотите изменить настройки и попытаться повторно отправить отчет, \n" -+"перейдите в меню Настройки. После применения изменений нажмите кнопку " -+"Повторить ." - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -607,180 +626,171 @@ msgid "" - "passwords. The uploaded data are stored in a protected storage and only a " - "limited number of persons can read them." - msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:1935 -+"Если вы уверены, что этот конфликт не связан с сетевым соединением или " -+"ошибками конфигурации,\n" -+"и хотите помочь нам его решить, нажмите кнопку отправки отчета и приложите " -+"все данные ошибки\n" -+"Прежде чем это сделать, оцените потенциальный риск безопасности: \n" -+"в передаваемых данных могут содержаться конфиденциальные данные (пароли и т." -+"п.). Ваши данные\n" -+"будут загружены в защищенное хранилище, доступ к которому имеет лишь " -+"ограниченный круг лиц." -+ -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" --"Обработка была прервана, потому что об этой проблеме не нужно сообщать." -+"Обработка была прервана, так как этот конфликт не учитывается в отчетности." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." --msgstr "Обработка невозможна." -+msgstr "Ошибка обработки." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Обработка завершена." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." --msgstr "Обработка завершена, пожалуйста, перейдите к следующему шагу." -- --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -+msgstr "Обработка завершена. Перейдите к следующему шагу." - - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Не задан метод обработки события «%s»" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." --msgstr "Обработка прервана: продолжение невозможно без записи каталога." -+msgstr "Обработка прервана: необходимо разрешить запись в каталог." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Обработка..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+"Обнаружены возможные конфиденциальные данные. Вы можете изъять их из отчета." -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Невозможно проверить рейтинг трассировки, так как неверно указано имя " - "события" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" --"Событию '%s' требуется разрешение на отправку вероятно конфиденциальных " -+"Событию «%s» требуется разрешение на отправку вероятно конфиденциальных " - "данных. Вы хотите продолжить?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "Похоже, что это - известная проблема, сообщение необязательно. %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Открыть" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" --msgstr "\"%s\" не является текстовым файлом" -+msgstr "«%s» не является текстовым файлом" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Вы пытаетесь скопировать файл в тот же файл" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" --msgstr "Копирование \"%s\" невозможно: %s" -+msgstr "Копирование «%s» невозможно: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" --msgstr "\"%s\" уже существует и не может быть изменён" -+msgstr "«%s» уже существует и не может быть изменён" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Включить" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Имя" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Значение" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Описание проблемы" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Выберите способ отправки отчета" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Дополнительные сведения" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Просмотр информации" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Подтвердите отправку данных" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Обработка" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Обработка завершена" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "О_становить" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Загрузка для дальнейшего изучения" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" --msgstr "" -+msgstr "Повтроить" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Вперед" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Подробности" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Ограничить доступ к отчету" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -788,6 +798,10 @@ msgid "" - "\n" - "su -c \"yum install fros-recordmydesktop\"" - msgstr "" -+"Чтобы включить возможности видеозахвата экрана, надо установить пакет fros-" -+"recordmydesktop:\n" -+"\n" -+"su -c \"yum install fros-gnome\"" - - #: ../src/gui-wizard-gtk/wizard.glade.h:1 - msgid "" -@@ -802,57 +816,38 @@ msgid "" - "Please review the data before it gets reported. Depending on reporter " - "chosen, it may end up publicly visible." - msgstr "" --"Пожалуйста, просмотрите данные перед отправкой отчета. В зависимости от " --"выбора докладчика, они могут оказаться на всеобщем обозрении." -+"Прежде чем данные будут отправлены, рекомендуется их проверить, так как в " -+"зависимости от выбранного метода формирования отчетности они могут оказаться " -+"в открытом доступе." - - #: ../src/gui-wizard-gtk/wizard.glade.h:3 - msgid "Sensitive words" --msgstr "" -+msgstr "Нежелательные слова" - - #: ../src/gui-wizard-gtk/wizard.glade.h:4 - msgid "Custom" --msgstr "" -+msgstr "Дополнительно" - - #: ../src/gui-wizard-gtk/wizard.glade.h:5 - msgid "Clear the search bar to see the list of security sensitive words." - msgstr "" -+"Очистите строку поиска для просмотра списка слов, которые могут быть связаны " -+"с конфиденциальными данными." - - #: ../src/gui-wizard-gtk/wizard.glade.h:6 - msgid "file" --msgstr "" -+msgstr "файл" - - #: ../src/gui-wizard-gtk/wizard.glade.h:7 - msgid "data" --msgstr "" -+msgstr "данные" - - #: ../src/gui-wizard-gtk/wizard.glade.h:8 - msgid "Search" --msgstr "" -+msgstr "Поиск" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Ограничить доступ к отчету" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Ни у кого, кроме членов группы Fedora Contrib, не будет доступа к этому " --"отчету с ограниченным доступом (даже у вас)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Узнать больше об ограничении доступа" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -862,7 +857,7 @@ msgstr "" - "анализа, оценки собранных данных и выбора получателя отчёта. Нажмите " - "«Вперёд» для продолжения." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -872,11 +867,11 @@ msgstr "" - "повторить. Включите комментарии, которые смогут помочь при диагностике " - "(желательно на английском)." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Для продолжения необходимо заполнить поле." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -884,31 +879,31 @@ msgstr "" - "Комментарии открыты для чтения. Они могут быть включены в " - "общедоступные отчёты." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" --msgstr "Если Вы затрудняетесь с описанием, Вы можете" -+msgstr "Если вы затрудняетесь с описанием, можно:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "Добавить вещание с экрана" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Я не знаю, что вызвало эту проблему" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Размер:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Вложить файл" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Я ознакомился с информацией и разрешаю её передачу" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -918,44 +913,43 @@ msgstr "" - "информацию (имена пользователей и пароли). Протоколы сбоев, команды и " - "переменные окружения могут содержать такие данные." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Обработка еще не началась" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Показать журнал" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Отчёт отправлен. Можно закрыть окно." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" --"Чтобы изменить получателя отчёта, подробно опишите проблему и создайте отчёт " --"заново, нажав «Вперёд»." -+"Чтобы сохранить отчет в другом месте, соберите дополнительную информацию и " -+"создайте его заново, нажав «Вперед»." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Опишите подробно" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Проблемный каталог" - - #: ../src/lib/abrt_sock.c:160 - #, c-format - msgid "Can't delete: '%s'" --msgstr "Невозможно удалить: '%s'" -+msgstr "Невозможно удалить: «%s»" - - #: ../src/lib/abrt_sock.c:196 - msgid "locked by another process" -@@ -974,179 +968,247 @@ msgstr "не каталог с данными ошибки" - msgid "Can't delete '%s': %s" - msgstr "Не удается удалить «%s»: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" --msgstr "д" -+msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" --msgstr "Н" -+msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" --msgstr " " -+msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Пропущен требуемый предмет: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" --msgstr "Неверное значение uid: '%s'" -+msgstr "Неверный UID: «%s»" -+ -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Пропущен обязательный элемент: «%s»" - - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" --msgstr "Отправлено: %llu из %llu КБ" -+msgstr "Отправлено %llu из %llu КБ" -+ -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" - --#: ../src/lib/curl.c:635 -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s отправляется в %s..." -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s успешно отправлен в %s" -+msgid "gzip killed with signal %d" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Заполните обязательные поля" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Недопустимый символ UTF8 \"%c\"" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" --msgstr "Недопустимый номер \"%s\"" -+msgstr "Недопустимый номер «%s»" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" --msgstr "Неверное логическое значение: \"%s\"" -+msgstr "Неверное логическое значение: «%s»" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Неподдерживаемый тип параметра" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "Не удалось сообщить об ошибке: файл «%s» не содержит номер." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Пожалуйста сообщите о проблеме в проект разработчиков ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." --msgstr "Неполный протокол сбоя. Опишите действия, которые привели к ошибке." -+msgstr "Неполный протокол сбоя. Опишите действия, которые привели к ошибке." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." --msgstr "Вероятно, трассировка не помогла разработчику выловить ошибку." -+msgstr "" -+"Вероятно, данные трассировки не помогут разработчику идентифицировать ошибку." -+"" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." --msgstr "Отчёт не будет отправлен, так как протокол сбоя непригоден." -+msgstr "Формирование отчета отменено в силу непригодности протокола сбоя." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" --"Пожалуйста установите debuginfo вручную, используя команду: \"debuginfo-" --"install %s\" и попробуйте снова." -+"Установите debuginfo вручную и повторите попытку. Команда установки: " -+"«debuginfo-install %s»" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." --msgstr "Возможно правильный debuginfo отсутствует или поврежден дамп памяти." -+msgstr "Вероятно, отсутствует debuginfo или дамп памяти поврежден." -+ -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" --msgstr "Ваша ошибка, по-видимому, вызвана %s\n" -+msgstr "Возможно, ошибка вызвана %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Ваша ошибка, по-видимому, вызвана чем-то из перечисленного:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" --msgstr "Ошибка отправки отчёта на сервер '%s' посредством cURL: %s" -+msgstr "Ошибка отправки отчёта на сервер «%s» посредством cURL: %s" -+ -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" --msgstr "Не существует URL '%s' (ошибка 404)" -+msgstr "«%s» не существует (ошибка 404)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" --msgstr "Произошла внутренняя ошибка сервера '%s' (ошибка 500)" -+msgstr "Внутренняя ошибка сервера «%s» (ошибка 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "Сервер «%s» не может обработать запрос (ошибка 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" --msgstr "Неожиданный ответ '%s': %d" -+msgstr "Неожиданный ответ «%s»: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "Не удалось обработать ответ сервера ureport «%s»" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" --msgstr "Неверный формат ответа '%s'" -+msgstr "Неверный формат ответа «%s»" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" --msgstr "Обнаружено несоответствие типов в ответе '%s'" -+msgstr "Обнаружено несоответствие типов в ответе «%s»" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Не удалось отправить сообщение об ошибке" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" --msgstr "Сервер '%s' ответил сообщением об ошибке: '%s'" -+msgstr "Сервер «%s» вернул ошибку: «%s»" - - #: ../src/lib/make_descr.c:149 ../src/lib/make_descr.c:160 - msgid "Reported:" -@@ -1154,7 +1216,7 @@ msgstr "Отправлено:" - - #: ../src/lib/make_descr.c:149 - msgid "cannot be reported" --msgstr "" -+msgstr "не может быть добавлен в отчет" - - #: ../src/lib/parse_options.c:63 - msgid "Usage: " -@@ -1163,79 +1225,94 @@ msgstr "Формат: " - #: ../src/lib/problem_data.c:252 - #, c-format - msgid "Essential element '%s' is missing, can't continue" --msgstr "Отсутствует обязательный элемент \"%s\". Продолжение невозможно..." -+msgstr "Отсутствует обязательный элемент «%s». Продолжение невозможно..." - - #: ../src/lib/problem_report.c:477 - #, c-format - msgid "Can't parse backtrace: %s" --msgstr "Не удается анализировать трассировку: %s" -+msgstr "Не удалось обработать данные трассировки: %s" - - #: ../src/lib/problem_report.c:488 - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "Не удается создать описание трассировки стека (нет сбойной цепочки?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" --msgstr "" -+msgstr "Примечание не содержит оценки" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" --msgstr "('%s' был убит сигналом %u)\n" -+msgstr "(«%s» был прерван по сигналу %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" --msgstr "('%s' завершился без ошибок)\n" -+msgstr "(«%s» завершился без ошибок)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" --msgstr "('%s' завершился с кодом выхода %u)\n" -+msgstr "(«%s» завершился с кодом выхода %u)\n" - - #: ../src/plugins/abrt_rh_support.c:356 - #, c-format - msgid "Error in case creation at '%s': %s" --msgstr "Ошибка при запросе '%s': %s" -+msgstr "Ошибка при создании запроса в «%s»: %s" - - #: ../src/plugins/abrt_rh_support.c:365 - #, c-format - msgid "Error in case creation at '%s', HTTP code: %d, server says: '%s'" --msgstr "Ошибка при запросе '%s', код ответа HTTP: %d, ответ сервера: '%s'" -+msgstr "" -+"Ошибка при создании запроса в «%s», код ответа HTTP: %d, ответ сервера: «%s»" - - #: ../src/plugins/abrt_rh_support.c:369 - #, c-format - msgid "Error in case creation at '%s', HTTP code: %d" --msgstr "Ошибка при запросе '%s', код ответа HTTP: %d" -+msgstr "Ошибка при создании запроса в «%s», код ответа HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:420 - #, c-format - msgid "Error in case creation at '%s': no Location URL, HTTP code: %d" - msgstr "" --"Ошибка при запросе '%s': отсутствует ссылка-указатель, код ответа HTTP: %d" -+"Ошибка при создании запроса «%s»: отсутствует ссылка-указатель, код ответа " -+"HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:524 - #, c-format - msgid "Error in comment creation at '%s': %s" --msgstr "Ошибка при создании комментария '%s': %s" -+msgstr "Ошибка при создании комментария «%s»: %s" - - #: ../src/plugins/abrt_rh_support.c:533 - #, c-format - msgid "Error in comment creation at '%s', HTTP code: %d, server says: '%s'" - msgstr "" --"Ошибка при создании комментария '%s', код ответа HTTP: %d, ответ сервера: " --"'%s'" -+"Ошибка при создании комментария «%s», код ответа HTTP: %d, ответ сервера: " -+"«%s»" - - #: ../src/plugins/abrt_rh_support.c:537 - #, c-format - msgid "Error in comment creation at '%s', HTTP code: %d" --msgstr "Ошибка при создании комментария '%s', код ответа HTTP: %d" -+msgstr "Ошибка при создании комментария «%s», код ответа HTTP: %d" - - #: ../src/plugins/abrt_rh_support.c:583 - #, c-format - msgid "Error in comment creation at '%s': no Location URL, HTTP code: %d" - msgstr "" --"Ошибка при создании комментария '%s': отсутствует ссылка-указатель, код " -+"Ошибка при создании комментария «%s»: отсутствует ссылка-указатель, код " - "ответа HTTP: %d" - - #: ../src/plugins/report_Bugzilla.xml.in.h:1 -@@ -1261,8 +1338,8 @@ msgid "" - "You can create bugzilla.redhat.com account <a href=\"https://bugzilla." - "redhat.com/createaccount.cgi\">here</a>" - msgstr "" --"<a href=\"https://bugzilla.redhat.com/createaccount.cgi\">Создать</" --"a> учётную запись Bugzilla." -+"<a href=\"https://bugzilla.redhat.com/createaccount." -+"cgi\">Зарегистрироваться</a> в Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:6 - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:6 -@@ -1276,51 +1353,74 @@ msgid "Bugzilla account password" - msgstr "Пароль в Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" --msgstr "URL Bugzilla" -+msgid "Restrict access" -+msgstr "Ограничить доступ" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Ограничить доступ к запросу в Bugzilla, допуская для просмотра лишь " -+"пользователей из указанных групп (см. дополнительные настройки)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Группы" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Предоставить доступ лишь указанным группам <a href=\"https://github.com/" -+"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "Адрес Bugzilla" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Адрес сервера Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Проверить SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Проверить ключ SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" --msgstr "Разработка Bugzilla" -+msgstr "Продукт в Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" --msgstr "Укажите, только если нужно отличное от указанного в /etc/os-release" -+msgstr "" -+"Укажите, только если продукт отличается от указанного в /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" --msgstr "Версия разработки Bugzilla" -+msgstr "Версия продукта в Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" --msgstr "" --"Укажите, только если нужна версия разработки, отличная от указанной в /etc/" --"os-release" -+msgstr "Укажите, если версия отличается от указанной в /etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1329,8 +1429,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP-прокси" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1339,8 +1439,8 @@ msgstr "HTTP-прокси" - msgid "Sets the proxy server to use for HTTP" - msgstr "Выбирает прокси-сервер для использования с HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1349,8 +1449,8 @@ msgstr "Выбирает прокси-сервер для использован - msgid "HTTPS Proxy" - msgstr "HTTPS-прокси" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1359,32 +1459,6 @@ msgstr "HTTPS-прокси" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Выбирает прокси-сервер для использования с HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Ограничить доступ" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Ограничить доступ к созданному в bugzilla запросу, допуская к нему для " --"просмотра лишь пользователей из указанных групп (см. дополнительные " --"настройки для более подробной информации)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Группы" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Предоставить доступ лишь указанным группам <a href=\"https://github.com/" --"abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1401,7 +1475,7 @@ msgstr "" - "\n" - "Добавляет файлы из списка FILE в отчёт на TARGET.\n" - "\n" --"Эта программа помогает создать отчёты об ошибках для libreport.\n" -+"Эта программа облегчает переход с report на libreport.\n" - "Допустимые значения TARGET: 'strata' (отправляет отчёт в RHTSupport)\n" - "и 'bugzilla' (создаёт отчёт в Bugzilla).\n" - "\n" -@@ -1425,13 +1499,13 @@ msgstr "" - "проигнорированы." - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Необходимо указать имя" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Необходимо указать пароль" -@@ -1446,10 +1520,10 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "Неверное имя или пароль. Пожалуйста, введите ваше имя в Bugzilla:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" --msgstr "Неверное имя или пароль. Пожалуйста, введите ваш пароль для '%s':" -+msgstr "Неверное имя или пароль. Пожалуйста, введите ваш пароль для «%s»:" - - #: ../src/plugins/reporter-bugzilla.c:221 - msgid "" -@@ -1461,7 +1535,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1495,198 +1569,204 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"или\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"или\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"или\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"Эта утилита читает содержимое DIR, затем подключается с Bugzilla и ищет\n" --"отчет с таким же значением abrt_hash:HEXSTRING в поле «Whiteboard».\n" --"\n" --"Если ничего не найдено, будет создан новый отчет. Части DIR сохраняются \n" --"как описание или вложения (в зависимости от размера).\n" --"\n" --"Если отчет уже существует и отмечен как CLOSED DUPLICATE, в исходный отчет \n" --"будет добавлен комментарий.\n" --"\n" --"Ссылка на новый или измененный отчет будет выведена в stdout и сохранена\n" --"в конструкции 'reported_to'.\n" --"\n" --"Ключ -t подгружает файлы в существующий отчет Bugzilla. \n" --"Идентификатор отчета будет получен из каталога DIR (с ключом -d). \n" --"Если сведения об ошибке до этого момента не отправлялись в Bugzilla, \n" --"попытка отправки завершится неудачей.\n" --"\n" --"Ключ -tlD загружает файлы в отчет с заданным идентификатором; \n" --"при этом ключ -d игнорируется.\n" --"\n" --"Ключ -w добавляет пользователя Bugzilla в список получателей копии.\n" --"\n" --"По умолчанию CONFILE содержит " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" --msgstr "Файл конфигурации (можно указать несколько)" -+msgstr "Файл конфигурации (может быть несколько)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" --msgstr "Подготавливаю файл для первого комментария" -+msgstr "Подготовка файла для первого комментария" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Подготавливается файл для повторных сообщений" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Вложить файлы [в запрос с этим ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" --msgstr "Включать двоичные файлы в отчёт" -+msgstr "Включать двоичные файлы" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Создать отчёт, даже если об этой проблеме уже сообщалось" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" --msgstr "" --"Добавить пользователя в список получателей копии рассылки [по ошибке с " --"данным ID]" -+msgstr "Добавить пользователя в список получателей [в запросе с данным ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" --msgstr "Вывести BUG_ID, полученный DUPHASH" -+msgstr "Вывести BUG_ID, вернувший DUPHASH" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" --msgstr "Имя системы отслеживания ошибок для адреса из «reported_to»" -+msgstr "Система отслеживания ошибок для адреса из поля «reported_to»" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" --msgstr "Ограничить доступ только к этой группе" -+msgstr "Ограничить доступ только этой группой" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Отладка" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Поиск похожих ошибок в Bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" - msgstr "" --"Логин не получен из конфигурации, пожалуйста, введите Ваш Bugzilla логин вручную:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "В конфигурации не задано имя пользователя Bugzilla. Введите имя:" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" --msgstr "Пароль не задан настройками, пожалуйста введите пароль для '%s':" -+msgstr "В конфигурации не задан пароль «%s». Введите пароль:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" --"Не могу определить ID в Bugzilla, так как об этой ошибке ещё не было " --"сообщено." -+"Не удалось определить ID в Bugzilla, так как об этой ошибке еще не " -+"сообщалось." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" --"Об этой было сообщено в Bugzilla '%s', что отличается от настроенного " --"Bugzilla '%s'." -+"Для этой ошибки уже есть отчет Bugzilla «%s», и он отличается от " -+"настроенного Bugzilla «%s»." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." --msgstr "Неверно составленная ссылка в Bugzilla '%s'." -+msgstr "Неверно сформированный адрес в Bugzilla «%s»." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" --msgstr "Используется ID Bugzilla '%s'" -+msgstr "Используется ID Bugzilla «%s»" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Выход" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." --msgstr "Невозможно определить версию разработки Bugzilla в данных об ошибке." -+msgstr "" -+"Не удалось определить продукт исходя из предоставленных данных об ошибке." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Поиск дубликатов" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Создаётся новый запрос" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." --msgstr "Не удалось создать запрос для новой ошибки." -+msgstr "Не удалось создать новый запрос" -+ -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Добавление внешних ссылок в отчет %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Присоединяются файлы к %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Запрос уже существует: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s добавляется в список получателей копии" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Добавление комментария в %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Добавление более подходящего протокола..." - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" --msgstr "Этот комментарий уже есть в запросе. Добавление отменено." -+msgstr "Этот комментарий уже есть в отчете. Добавление отменено." - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Статус: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1721,7 +1801,7 @@ msgstr "" - "Его можно переопределить с помощью $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Файл конфигурации" - -@@ -1747,18 +1827,18 @@ msgstr "Для продолжения необходимо ввести элек - #: ../src/plugins/reporter-mailx.c:136 - #, c-format - msgid "Sending a notification email to: %s" --msgstr "" -+msgstr "Отправляется электронное письмо с уведомлением для %s" - - #: ../src/plugins/reporter-mailx.c:138 - msgid "Sending an email..." - msgstr "Отправляется сообщение..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Сообщение отправлено на адрес %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1772,13 +1852,13 @@ msgstr "" - "\n" - "Если CONFILE не задан, по умолчанию используется " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Файл конфигурации" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" --msgstr "Только оповестить(Не помечать отчёт как отправленный)" -+msgstr "Только оповестить(не отмечать отчёт как отправленный)" - - #: ../src/plugins/reporter-print.c:42 - msgid "" -@@ -1809,36 +1889,36 @@ msgstr "Отменено пользователем." - #: ../src/plugins/reporter-print.c:108 - #, c-format - msgid "Can't open '%s' for writing. Please select another file:" --msgstr "Не удалось открыть \"%s\" для записи. Выберите другой файл:" -+msgstr "Не удалось открыть «%s» для записи. Выберите другой файл:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Отчёт добавлен в %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Отчёт сохранён в %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" --msgstr "Ответ сервера об ошибке: '%s'" -+msgstr "Сервер вернул ошибку: «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Вы все еще хотите создать запрос RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" --msgstr "" -+msgstr "Неверное имя или пароль. Введите ваше имя Red Hat:" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1847,81 +1927,86 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" --msgstr "Отправить файлы в запрос с этим ID" -+msgstr "Добавить файлы в запрос с этим идентификатором" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" --msgstr "" -+msgstr "Отправить uReport, прежде чем создать отчет" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" -+msgstr "Файл конфигурации uReport" -+ -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" --msgstr "Конфигурация не содержит имя входа. Введите имя входа RHTS:" -+msgstr "В конфигурации не задано имя пользователя RHTS. Введите имя:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Добавление «%s» в запрос «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" --msgstr "" -+msgstr "Отправка статистических данных ABRT о сбое" -+ -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Не удалось создать временный каталог в " - - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Сжатие данных..." - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Не удалось создать временный каталог в " -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Не удалось создать временный файл в " - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Поиск существующих решений" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" --msgstr "Создаётся новый запрос" -+msgstr "Создание нового запроса" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" --"Невозможно определить версию разработки RH Support в данных об ошибке." -+"Не удалось определить продукт в списке технической поддержки Red Hat исходя " -+"из данных об ошибке." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" --msgstr "" -+msgstr "Связывание статистических данных ABRT с отчетом" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" --msgstr "" -+msgstr "Связывание статистики ABRT с адресом %s" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" --msgstr "Добавление комментария к ошибке '%s'" -+msgstr "Добавление комментария к отчету «%s»" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" --msgstr "Присоединение данных об ошибке к '%s'" -+msgstr "Присоединение данных об ошибке к «%s»" - - #: ../src/plugins/reporter-rhtsupport-parse.c:202 - msgid "Documentation which might be relevant: " -@@ -1931,62 +2016,68 @@ msgstr "Дополнительная документация:" - msgid "Updates which possibly help: " - msgstr "Подходящие обновления:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Для продолжения необходимо указать URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" --msgstr "" -+msgstr "Чтобы отправить, введите пароль:" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Создан архив «%s»" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"Отправляет архив *.tar каталога DIR на заданный адрес URL. Если адрес не " --"задан, архив будет создан в " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" --msgstr "URL получателя" -+msgstr "Базовый URL для размещения файлов" -+ -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+"Введите URL ресурса (scp, ftp и т.п), куда будут сохранены сведения об " -+"ошибке:" - - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" --msgstr "" -+msgstr "Введите имя пользователя MantisBT:" - - #: ../src/plugins/reporter-mantisbt.c:86 - msgid "Please enter the password for" --msgstr "" -+msgstr "Введите пароль " - - #: ../src/plugins/reporter-mantisbt.c:97 - msgid "Credentials are not provided by configuration." --msgstr "" -+msgstr "Конфигурация не содержит учетных данных." - - #: ../src/plugins/reporter-mantisbt.c:121 - msgid "Invalid password or login." --msgstr "" -+msgstr "Неверное имя или пароль." - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2028,104 +2119,152 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" -+"\n" -+"& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -+"или\n" -+"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" -+"или\n" -+"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" -+"или\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"\n" -+"Создает отчет об ошибке на сайте MantisBT.\n" -+"\n" -+"Программа проверяет каталог DIR и ищет отчет с тем же abrt_hash в поле " -+"«abrt_hash».\n" -+"\n" -+"Если проблема не найдена, для нее будет создан новый отчет.\n" -+"Поля отчета будут заполнены на основании информации из DIR\n" -+"(в зависимости от размера объектов в DIR они могут быть добавлены как " -+"вложения).\n" -+"\n" -+"Если отчет уже существует и имеет статус CLOSED DUPLICATE,\n" -+"программа последовательно пройдет до цепочке дубликатов, \n" -+"пока не будет найден первоначальный отчет без флага DUPLICATE,\n" -+"и добавит комментарий в найденный отчет.\n" -+"\n" -+"Ссылка на новый или измененный отчет будет выведена в stdout\n" -+"и записана в элемент «reported_to».\n" -+"\n" -+"Аргумент «-t» помогает прикрепить перечисленные файлы \n" -+"к существующему отчету на сайте MantisBT. Идентификатор проблемы \n" -+"извлекается из каталога, указанного с помощью параметра «-d DIR». \n" -+"Если на сайте MantisBT отчет с таким идентификатором не найден, \n" -+"попытка добавления файлов закончится неудачей.\n" -+"\n" -+"Аргументы «-tID» позволяют добавить перечисленные файлы\n" -+"в отчет, явно указав его идентификатор. При этом «-d DIR» игнорируется.\n" -+"\n" -+"Аргумент «-r» извлекает ссылку из элемента «reporter_to», добавляет префикс\n" -+"TRACKER_NAME и сохраняет ее в поле URL. Этот параметр используется только \n" -+"при создании нового отчета. По умолчанию имеет значение «ABRT Server».\n" -+"\n" -+"Если CONFILE не задан, по умолчанию используется " - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" --msgstr "" -+msgstr "Вложить файлы [в отчет с этим ID]" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." --msgstr "" -+msgstr "Не удалось открыть каталог «%s»." - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" --msgstr "" -+msgstr "Поиск похожих ошибок в MantisBT" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" -+"Не удалось получить идентификатор MantisBT, так как об этой проблеме еще не " -+"сообщалось." - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" -+"Для этой ошибки уже есть отчет в MantisBT — «%s», однако он отличается о " -+"настроенного «%s»." - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." --msgstr "" -+msgstr "Неверно сформированный адрес MantisBT «%s»." - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" --msgstr "" -+msgstr "Используется ID MantisBT «%s»" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" --msgstr "" -+msgstr "Прикрепление файла «%s» в отчет «%s»" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " - "to create a new issue?" - msgstr "" -+"Об этой проблеме уже сообщалось в MantisBT (см. «%s»). Вы все равно хотите " -+"создать новый отчет?" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" --msgstr "" -+msgstr "Создание нового отчета" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" --msgstr "" -+msgstr "Недопустимый формат файла: %s" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" --msgstr "" -+msgstr "Ошибка форматирования данных проблемы" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" --msgstr "" -+msgstr "Добавление внешней ссылки в отчет" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" --msgstr "" -+msgstr "Добавление вложений к отчету %i" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" --msgstr "" -+msgstr "Недопустимый дубликат файла: «%s»" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" -+"Ошибка форматирования дубликата комментария из полученных данных о проблеме" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" --msgstr "" -+msgstr "Добавление комментария в %d" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" --msgstr "" -+msgstr "Этот комментарий уже есть в отчете. Добавление отменено." - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" --msgstr "" -+msgstr "Статус: %s%s%s %s/view.php?id=%u" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:1 - msgid "CentOS Bug Tracker" --msgstr "" -+msgstr "CentOS Bug Tracker" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:2 - #: ../src/workflows/workflow_CentOSCCpp.xml.in.h:1 -@@ -2137,55 +2276,64 @@ msgstr "" - #: ../src/workflows/workflow_CentOSVmcore.xml.in.h:1 - #: ../src/workflows/workflow_CentOSXorg.xml.in.h:1 - msgid "Report to CentOS Bug Tracker" --msgstr "" -+msgstr "Отправить в CentOS Bug Tracker" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:4 - msgid "CentOS Bug Tracker account user name" --msgstr "" -+msgstr "Имя пользователя Centos Bug Tracker" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:5 - msgid "" - "You can create bugs.centos.org account <a href=\"https://bugs.centos.org/" - "signup_page.php\">here</a>" - msgstr "" -+"Регистрация новых пользователей на <a href=\"https://bugs.centos.org/" -+"signup_page.php\"> bugs.centos.org</a>" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:7 - msgid "CentOS Bug Tracker account password" --msgstr "" -+msgstr "Пароль доступа к Centos Bug Tracker" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 --msgid "Address of CentOS Bug Tracker server" -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "CentOS Bug Tracker URL" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+msgid "Address of CentOS Bug Tracker server" -+msgstr "Адрес сервера CentOS Bug Tracker" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" --msgstr "" -+msgstr "Проект" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" -+"Укажите, только если вы хотите выбрать проект, отличный от указанного в /etc/" -+"os-release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" --msgstr "" -+msgstr "Версия проекта" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" -- --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -+"Укажите, только если вы хотите выбрать версию проекта, отличную от " -+"указанного в /etc/os-release" - - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" -@@ -2193,19 +2341,19 @@ msgstr "Kerneloops.org" - - #: ../src/plugins/report_Kerneloops.xml.in.h:2 - msgid "Send to kernel oops tracker" --msgstr "Отправить на сервер oops" -+msgstr "Отправить на сервер Kernel Oops" - - #: ../src/plugins/report_Kerneloops.xml.in.h:3 - msgid "Kerneloops URL" --msgstr "URL Kerneloops" -+msgstr "Kerneloops URL" - - #: ../src/plugins/report_Kerneloops.xml.in.h:4 - msgid "Oops server url" --msgstr "URL сервера Oops" -+msgstr "Адрес сервера Kernel Oops" - - #: ../src/plugins/report_Logger.xml.in.h:1 - msgid "Logger" --msgstr "Журнал" -+msgstr "Ведение журнала" - - #: ../src/plugins/report_Logger.xml.in.h:2 - msgid "Save as text file" -@@ -2217,7 +2365,7 @@ msgstr "Журнал" - - #: ../src/plugins/report_Logger.xml.in.h:4 - msgid "Name of the logfile" --msgstr "Имя файла журнала" -+msgstr "Файл журнала" - - #: ../src/plugins/report_Logger.xml.in.h:5 - msgid "Append" -@@ -2225,7 +2373,7 @@ msgstr "Добавить" - - #: ../src/plugins/report_Logger.xml.in.h:6 - msgid "Append new reports or overwrite the old one." --msgstr "Добавить новый отчёт или перезаписать старый." -+msgstr "Добавить новый отчет или перезаписать старый." - - #: ../src/plugins/report_Mailx.xml.in.h:1 - msgid "Mailx" -@@ -2249,7 +2397,7 @@ msgstr "Отправитель" - - #: ../src/plugins/report_Mailx.xml.in.h:6 - msgid "Sender's email" --msgstr "Email отправителя" -+msgstr "Адрес отправителя" - - #: ../src/plugins/report_Mailx.xml.in.h:7 - msgid "Recipient" -@@ -2257,7 +2405,7 @@ msgstr "Получатель" - - #: ../src/plugins/report_Mailx.xml.in.h:8 - msgid "Recipient's email" --msgstr "Email получателя" -+msgstr "Адрес получателя" - - #: ../src/plugins/report_Mailx.xml.in.h:9 - msgid "Send Binary Data" -@@ -2289,17 +2437,19 @@ msgstr "Пароль пользователя Red Hat" - - #: ../src/plugins/report_RHTSupport.xml.in.h:9 - msgid "Submit uReport" --msgstr "" -+msgstr "Отправлять uReport" - - #: ../src/plugins/report_RHTSupport.xml.in.h:10 - msgid "" - "Submit <a href=\"https://access.redhat.com/articles/642323\">micro-" - "report</a> when creating a new case." - msgstr "" -+"Отправлять <a href=\"https://access.redhat.com/articles/" -+"642323\">микроотчет</a> при создании нового запроса." - - #: ../src/plugins/report_RHTSupport.xml.in.h:11 - msgid "RH Portal URL" --msgstr "URL портала RH" -+msgstr "Адрес портала Red Hat" - - #: ../src/plugins/report_RHTSupport.xml.in.h:12 - msgid "Address of the Red Hat support portal" -@@ -2307,7 +2457,7 @@ msgstr "Адрес портала поддержки Red Hat" - - #: ../src/plugins/report_Uploader.xml.in.h:1 - msgid "Report Uploader" --msgstr "" -+msgstr "Report Uploader" - - #: ../src/plugins/report_Uploader.xml.in.h:2 - msgid "Upload as tar.gz file (via FTP/SCP/...)" -@@ -2335,10 +2485,11 @@ msgstr "" - #: ../src/plugins/report_Uploader.xml.in.h:7 - msgid "Use this field if you do not want to have user name in URL" - msgstr "" -+"Используйте это поле, если вы хотите удалить имя пользователя из адреса" - - #: ../src/plugins/report_Uploader.xml.in.h:9 - msgid "Use this field if you do not want to have password in URL" --msgstr "" -+msgstr "Используйте это поле, если вы хотите исключить пароль из адреса" - - #: ../src/plugins/report_Uploader.xml.in.h:14 - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:8 -@@ -2350,6 +2501,22 @@ msgstr "FTP-прокси" - msgid "Sets the proxy server to use for FTP" - msgstr "Выбирает прокси-сервер для использования с FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2360,39 +2527,39 @@ msgstr "Отправка ureports на FAF сервер" - - #: ../src/plugins/report_uReport.xml.in.h:3 - msgid "uReport Server URL" --msgstr "URL uReport Сервера" -+msgstr "Адрес сервера uReport" - - #: ../src/plugins/report_uReport.xml.in.h:4 - msgid "Address of uReport webservice" --msgstr "Адрес web-сервиса uReport " -+msgstr "Адрес веб-сервиса uReport " - - #: ../src/plugins/report_uReport.xml.in.h:5 - msgid "Watch already reported bugs" --msgstr "Наблюдать ошибки, по которым уже есть отчеты" -+msgstr "Наблюдать за существующими отчетами" - - #: ../src/plugins/report_uReport.xml.in.h:6 - msgid "Adds your Bugzilla login to CC List of already reported bugs." --msgstr "" --"Добавляет вашу учетную запись в Bugzilla к списку рассылки копий уже " --"существующих запросов." -+msgstr "Добавляет ваше имя в список наблюдателей отчетов Bugzilla." - - #: ../src/plugins/report_uReport.xml.in.h:7 - msgid "Contact email address" --msgstr "" -+msgstr "Контактный электронный адрес" - - #: ../src/plugins/report_uReport.xml.in.h:8 - msgid "" - "Email address that can be used by ABRT server to inform you about news and " - "updates" - msgstr "" -+"Адрес электронной почты для получения последних новостей и обновлений с " -+"сервера ABRT." - - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:1 - msgid "Emergency analysis" --msgstr "Экстренный анализ" -+msgstr "Анализ аварийной ситуации" - - #: ../src/plugins/report_EmergencyAnalysis.xml.in.h:2 - msgid "Upload the problem data for further analysis" --msgstr "Загружаются сведения об ошибке для дальнейшего изучения" -+msgstr "Отправлять сведения об ошибке для дальнейшего изучения" - - #: ../src/plugins/watch_Bugzilla.xml.in.h:1 - msgid "Watch Bugzilla Bug" -@@ -2419,175 +2586,179 @@ msgstr "Запрос %i закрыт без решения" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Запрос %i закрыт как ДУБЛИКАТ, но DUP_ID отсутствует" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" --"Затребовано создание частного запроса, но группы не указаны, см. https://" --"github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets для " --"дополнительной информации" -+"Затребовано создание частного запроса, но группы не указаны (см. https://" -+"github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets)" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "ID нового запроса: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Родительский запрос для %d не найден." - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" --msgstr "" --"Возвращаемое значение функции Bug.search(quicksearch) не содержит членов " --"типа 'bugs'" -+msgstr "Поиск Bug.search(quicksearch) не вернул результатов типа 'bugs'" - - #: ../src/plugins/mantisbt.c:123 - #, c-format - msgid "MantisBT couldn't find parent of issue %d" --msgstr "" -+msgstr "Не удалось обнаружить родительский отчет %d в MantisBT" - - #: ../src/plugins/mantisbt.c:178 - msgid "SOAP: Failed to get child element because of no parent." --msgstr "" -+msgstr "SOAP: невозможно получить дочерний элемент, так как нет родителя." - - #: ../src/plugins/mantisbt.c:187 - msgid "SOAP: Failed to get next element because of no node." - msgstr "" -+"SOAP: невозможно получить следующий элемент, так как узел отсутствует." - - #: ../src/plugins/mantisbt.c:196 - msgid "SOAP: Failed to get child node because of no parent." --msgstr "" -+msgstr "SOAP: невозможно получить дочерний узел, так как нет родителя." - - #: ../src/plugins/mantisbt.c:217 - msgid "SOAP: Failed to parse xml during creating request." --msgstr "" -+msgstr "SOAP: не удалось обработать XML во время создания запроса." - - #: ../src/plugins/mantisbt.c:225 - msgid "SOAP: Failed to get xml root element." --msgstr "" -+msgstr "SOAP: не удалось получить корневой элемент XML." - - #: ../src/plugins/mantisbt.c:238 - msgid "" - "SOAP: Failed to add a new child node because of no node or no child name." - msgstr "" -+"SOAP: не удалось добавить дочерний узел, так как нет узла или его имя не " -+"определено." - - #: ../src/plugins/mantisbt.c:243 - msgid "SOAP: Failed to create a new xml child item." --msgstr "" -+msgstr "SOAP: не удалось создать новый дочерний элемент XML." - - #: ../src/plugins/mantisbt.c:248 - msgid "SOAP: Failed to create a new property." --msgstr "" -+msgstr "SOAP: не удалось создать свойство." - - #: ../src/plugins/mantisbt.c:258 - msgid "SOAP: Failed to add method parametr." --msgstr "" -+msgstr "SOAP: не удалось добавить параметр метода." - - #: ../src/plugins/mantisbt.c:287 - msgid "SOAP: Failed to add new issue parametrs." --msgstr "" -+msgstr "SOAP: не удалось добавить параметры для нового отчета." - - #: ../src/plugins/mantisbt.c:290 - msgid "" - "SOAP: Failed to add new issue parameters because the required items are " - "missing." - msgstr "" -+"SOAP: не удалось добавить параметры для нового отчета вследствие отсутствия " -+"обязательных элементов." - - #: ../src/plugins/mantisbt.c:334 - msgid "SOAP: Failed to create a new property in custom fields." --msgstr "" -+msgstr "SOAP: не удалось создать новое свойство в дополнительных полях." - - #: ../src/plugins/mantisbt.c:352 - msgid "" - "SOAP: Failed to create SOAP string because of invalid function arguments." - msgstr "" -+"SOAP: не удалось создать строку SOAP, так как аргументы функции заданы " -+"неверно." - - #: ../src/plugins/mantisbt.c:359 - msgid "SOAP: Failed to dump xml node." --msgstr "" -+msgstr "SOAP: не удалось сохранить описание узла XML." - - #: ../src/plugins/mantisbt.c:373 - msgid "SOAP: Failed to print SOAP string." --msgstr "" -+msgstr "SOAP: не удалось вывести строку SOAP." - - #: ../src/plugins/mantisbt.c:380 - msgid "Failed to dump xml node." --msgstr "" -+msgstr "Не удалось сохранить описание узла XML." - - #: ../src/plugins/mantisbt.c:456 - msgid "SOAP: Failed to parse xml (searching value at depth by name)." --msgstr "" -+msgstr "SOAP: не удалось обработать XML (глубокий поиск по имени)." - - #: ../src/plugins/mantisbt.c:460 ../src/plugins/mantisbt.c:503 - #: ../src/plugins/mantisbt.c:532 - msgid "SOAP: Failed to create xml text reader." --msgstr "" -+msgstr "SOAP: не удалось создать метод чтения XML." - - #: ../src/plugins/mantisbt.c:499 - msgid "SOAP: Failed to parse xml." --msgstr "" -+msgstr "SOAP: не удалось обработать XML." - - #: ../src/plugins/mantisbt.c:528 - msgid "SOAP: Failed to parse xml (get related to issue)." --msgstr "" -+msgstr "SOAP: не удалось обработать XML (при сопоставлении с отчетом)." - - #: ../src/plugins/mantisbt.c:645 - msgid "Url or request isn't specified." --msgstr "" -+msgstr "Не задан ни URL, ни запрос." - - #: ../src/plugins/mantisbt.c:673 - #, c-format - msgid "Error in HTTP POST, HTTP code: 404 (Not found), URL:'%s'" --msgstr "" -+msgstr "Ошибка HTTP POST. Код HTTP: 404 (не найдено), URL:«%s»" - - #: ../src/plugins/mantisbt.c:697 - #, c-format - msgid "Error in MantisBT request at '%s': %s" --msgstr "" -+msgstr "Ошибка в запросе MantisBT, «%s»: %s" - - #: ../src/plugins/mantisbt.c:699 - #, c-format - msgid "Error in MantisBT request at '%s'" --msgstr "" -+msgstr "Ошибка в запросе MantisBT, «%s»" - - #: ../src/plugins/mantisbt.c:741 - #, c-format - msgid "Failed to attach file: '%s'" --msgstr "" -+msgstr "Не удалось добавить файл: «%s»" - - #: ../src/plugins/mantisbt.c:760 - #, c-format - msgid "Can't lseek '%s'" --msgstr "" -+msgstr "Не удалось выполнить lseek: «%s»" - - #: ../src/plugins/mantisbt.c:766 - #, c-format - msgid "Can't upload '%s', it's too large (%llu bytes)" --msgstr "" -+msgstr "«%s» имеет слишком большой размер (%llu Б) и не может быть отправлен" - - #: ../src/plugins/mantisbt.c:776 - #, c-format - msgid "Can't read '%s'" --msgstr "" -+msgstr "Ошибка чтения «%s»" - - #: ../src/plugins/mantisbt.c:792 - #, c-format - msgid "Can't open '%s'" --msgstr "" -+msgstr "Не удалось открыть «%s»" - - #: ../src/plugins/mantisbt.c:859 - #, c-format - msgid "Failed to search MantisBT issue by duphash: '%s'" --msgstr "" -+msgstr "Не удалось выполнить поиск отчета MantisBT по duphash: «%s»" - - #: ../src/plugins/mantisbt.c:903 - #, c-format - msgid "Failed to search MantisBT duplicate issue: '%s'" --msgstr "" -+msgstr "Не удалось выполнить поиск дубликата отчета MantisBT: «%s»" - - #: ../src/plugins/mantisbt.c:930 - #, c-format -@@ -2595,79 +2766,81 @@ msgid "" - "MantisBT doesn't contain custom field '%s', which is required for full " - "functionality of the reporter. Do you still want to create a new issue?" - msgstr "" -+"В MantisBT нет дополнительного поля «%s», необходимого для полноценного " -+"функционирования модуля отчетности. Вы все равно хотите создать отчет?" - - #: ../src/plugins/mantisbt.c:954 - #, c-format - msgid "Failed to get custom fields for '%s' project" --msgstr "" -+msgstr "Не удалось получить дополнительные поля для проекта «%s»" - - #: ../src/plugins/mantisbt.c:998 - #, c-format - msgid "Failed to create a new issue: '%s'" --msgstr "" -+msgstr "Не удалось создать отчет: «%s»" - - #: ../src/plugins/mantisbt.c:1024 - #, c-format - msgid "Failed to get MantisBT issue: '%s'" --msgstr "" -+msgstr "Не удалось извлечь отчет MantisBT: «%s»" - - #: ../src/plugins/mantisbt.c:1038 - #, c-format - msgid "Issue %i is CLOSED, but it has no RESOLUTION" --msgstr "" -+msgstr "Отчет %i закрыт и имеет статус CLOSED, но без RESOLUTION" - - #: ../src/plugins/mantisbt.c:1046 - #, c-format - msgid "Issue %i is CLOSED as DUPLICATE, but it has no DUPLICATE_ID" --msgstr "" -+msgstr "Отчет %i закрыт как DUPLICATE, но DUPLICATE_ID отсутствует" - - #: ../src/plugins/mantisbt.c:1083 - #, c-format - msgid "Failed to add MantisBT issue note: '%s'" --msgstr "" -+msgstr "Не удалось добавить примечание к отчету MantisBT: «%s»" - - #: ../src/plugins/mantisbt.c:1097 - msgid "The MantisBT project has not been deretmined." --msgstr "" -+msgstr "Проект MantisBT не определен." - - #: ../src/plugins/mantisbt.c:1106 - msgid "Failed to get project id from name" --msgstr "" -+msgstr "Не удалось определить идентификатор проекта исходя из названия." - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Укажите URL сервера" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Разрешить небезопасное соединение с сервером ureport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Использовать аутентификацию клиента" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" --msgstr "" -+msgstr "Использовать аутентификацию HTTP" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" --msgstr "" -+msgstr "Дополнительные файлы в ключе «auth»" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "bthash uReport для вложения (не используется вместе с -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" --msgstr "вложить bthash из «reported_to» (не используется вместе с -a)" -+msgstr "добавить в bthash из «reported_to» (не используется вместе с -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - "контактный электронный адрес (требует -a|-A, не используется вместе с -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2675,28 +2848,55 @@ msgstr "" - "контактный электронный адрес из окружения или файла конфигурации (требует -" - "a|-A, не используется вместе с -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "вложить отчет RHBZ (требует -a|-A, не используется вместе с -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" --"вложить последний отчет RHBZ (требует -a|-A, не используется вместе с -b)" -+"вложить последний отчет Bugzilla из reported_to (требует -a|-A, не " -+"используется вместе с -b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" --msgstr "" -+msgstr "добавить краткий текст (требует -a|-A, не используется вместе с -D)" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" -+"добавить краткий текст из «comment» (требует -a|-A, не используется вместе с " -+"-d)" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2705,33 +2905,44 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." --msgstr "Для этой ошибки нет присоединённых микроотчётов." -+msgstr "Эта ошибка не генерирует uReport." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." --msgstr "Об этой ошибке не было сообщено в Bugzilla." -+msgstr "Об этой ошибке не сообщалось в Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" --msgstr "Невозможно найти ID ошибки в ссылке Bugzilla '%s'" -+msgstr "Не удалось найти идентификатор отчета в ссылке Bugzilla «%s»" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" --msgstr "Невозможно выделить ID ошибки из ссылки Bugzilla '%s'" -+msgstr "" -+"Не удалось извлечь идентификатор отчета из адресной строки Bugzilla «%s»" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" --msgstr "" -+msgstr "Не удалось добавить комментарий из файла «comment»" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" -+msgstr "Пустой файл «comment»." -+ -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2739,19 +2950,19 @@ msgstr "" - "Не заданы значения переменной окружения uReport_ContactEmail и параметра " - "ContactEmail" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" --msgstr "" -+msgstr "Необходимо указать ID отчета, электронный адрес или и то, и другое." - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." --msgstr "Для присоединения, необходимо указать bthash uReport." -+msgstr "Необходимо указать uReport bthash." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" --msgstr "Загрузка пустого uReport невозможна" -+msgstr "Пустой uReport не может быть отправлен." - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Об этой ошибке уже сообщено." - -@@ -2784,7 +2995,7 @@ msgstr "--- Выполняется %s ---" - - #: ../src/report-newt/report-newt.c:352 - msgid "No reporters available" --msgstr "Нет отправителей" -+msgstr "Средств генерации отчетов не обнаружено." - - #: ../src/report-newt/report-newt.c:382 - msgid "& [-d] DIR\n" -@@ -2797,7 +3008,7 @@ msgstr "" - - #: ../src/report-newt/report-newt.c:392 - msgid "Remove DIR after reporting" --msgstr "Удалить DIR после отправки отчёта" -+msgstr "Удалить DIR после формирования отчета" - - #: ../src/workflows/workflow_AnacondaFedora.xml.in.h:1 - msgid "Report a bug to Fedora maintainers" -@@ -2805,7 +3016,7 @@ msgstr "Сообщить об ошибке разработчикам Fedora" - - #: ../src/workflows/workflow_AnacondaFedora.xml.in.h:2 - msgid "Process the report using the Fedora infrastructure" --msgstr "Подготовить отчёт, используя средства Fedora" -+msgstr "Подготовить отчет средствами Fedora" - - #: ../src/workflows/workflow_AnacondaRHEL.xml.in.h:1 - msgid "Report a bug to Red Hat Customer Portal" -@@ -2814,7 +3025,7 @@ msgstr "Сообщить об ошибке на портал пользоват - #: ../src/workflows/workflow_AnacondaRHEL.xml.in.h:2 - #: ../src/workflows/workflow_AnacondaRHELBugzilla.xml.in.h:2 - msgid "Process the report using the Red Hat infrastructure" --msgstr "Подготовить отчет, используя средства Red Hat" -+msgstr "Подготовить отчет средствами Red Hat" - - #: ../src/workflows/workflow_AnacondaRHELBugzilla.xml.in.h:1 - msgid "Report a bug to Red Hat Bugzilla" -@@ -2822,43 +3033,43 @@ msgstr "Отправить отчет в Red Hat Bugzilla" - - #: ../src/workflows/workflow_AnacondaUpload.xml.in.h:1 - msgid "Export the problem data for manual reporting" --msgstr "" -+msgstr "Экспорт сведений об ошибке для последующего создания отчета вручную" - - #: ../src/workflows/workflow_AnacondaUpload.xml.in.h:2 - msgid "Upload the data via scp or ftp to a remote destination" --msgstr "" -+msgstr "Передать данные на удаленный сервер с помощью scp или ftp" - - #: ../src/workflows/workflow_CentOSCCpp.xml.in.h:2 - msgid "Process the C/C++ crash using the CentOS infrastructure" --msgstr "" -+msgstr "Обработать сбой C/C++ средствами CentOS" - - #: ../src/workflows/workflow_CentOSJava.xml.in.h:2 - msgid "Process the Java exception using the CentOS infrastructure" --msgstr "" -+msgstr "Обработать исключение Java средствами CentOS" - - #: ../src/workflows/workflow_CentOSKerneloops.xml.in.h:2 - msgid "Process the kerneloops using the CentOS infrastructure" --msgstr "" -+msgstr "Обработать сбой ядра средствами CentOS" - - #: ../src/workflows/workflow_CentOSLibreport.xml.in.h:2 - msgid "Process the problem using the CentOS infrastructure" --msgstr "" -+msgstr "Обработать ошибку средствами CentOS" - - #: ../src/workflows/workflow_CentOSPython.xml.in.h:2 - msgid "Process the python exception using the CentOS infrastructure" --msgstr "" -+msgstr "Обработать исключение Python средствами CentOS" - - #: ../src/workflows/workflow_CentOSPython3.xml.in.h:2 - msgid "Process the python 3 exception using the CentOS infrastructure" --msgstr "" -+msgstr "Обработать исключение Python 3 средствами CentOS" - - #: ../src/workflows/workflow_CentOSVmcore.xml.in.h:2 - msgid "Process the kernel crash using the CentOS infrastructure" --msgstr "" -+msgstr "Обработать сбой ядра средствами CentOS" - - #: ../src/workflows/workflow_CentOSXorg.xml.in.h:2 - msgid "Process the X Server problem using the CentOS infrastructure" --msgstr "" -+msgstr "Обработать ошибку X Server средствами CentOS" - - #: ../src/workflows/workflow_FedoraCCpp.xml.in.h:1 - #: ../src/workflows/workflow_FedoraKerneloops.xml.in.h:1 -@@ -2873,40 +3084,40 @@ msgstr "Сообщить в Fedora" - - #: ../src/workflows/workflow_FedoraCCpp.xml.in.h:2 - msgid "Process the C/C++ crash using the Fedora infrastructure" --msgstr "Обработать сбой C/C++, используя средства Fedora " -+msgstr "Обработать сбой C/C++ средствами Fedora " - - #: ../src/workflows/workflow_FedoraKerneloops.xml.in.h:2 - msgid "Process the kerneloops using the Fedora infrastructure" --msgstr "Обработать сбой ядра, используя средства Fedora" -+msgstr "Обработать сбой ядра средствами Fedora" - - #: ../src/workflows/workflow_FedoraPython.xml.in.h:2 - msgid "Process the python exception using the Fedora infrastructure" --msgstr "Обработать исключение Python, используя средства Fedora" -+msgstr "Обработать исключение Python средствами Fedora" - - #: ../src/workflows/workflow_FedoraPython3.xml.in.h:2 - msgid "Process the python 3 exception using the Fedora infrastructure" --msgstr "Обработать исключение Python 3, используя средства Fedora" -+msgstr "Обработать исключение Python 3 средствами Fedora" - - #: ../src/workflows/workflow_FedoraVmcore.xml.in.h:2 - msgid "Process the kernel crash using the Fedora infrastructure" --msgstr "Обработать сбой ядра, используя средства Fedora" -+msgstr "Обработать сбой ядра средствами Fedora" - - #: ../src/workflows/workflow_FedoraXorg.xml.in.h:2 - msgid "Process the X Server problem using the Fedora infrastructure" --msgstr "Обработать ошибку X Server, используя средства Fedora" -+msgstr "Обработать ошибку X Server средствами Fedora" - - #: ../src/workflows/workflow_FedoraLibreport.xml.in.h:2 - msgid "Process the problem using the Fedora infrastructure" --msgstr "Обработать ошибку, используя средства Fedora" -+msgstr "Обработать ошибку средствами Fedora" - - #: ../src/workflows/workflow_FedoraJava.xml.in.h:2 - msgid "Process the Java exception using the Fedora infrastructure" --msgstr "Обработать исключение Java, используя средства Fedora" -+msgstr "Обработать исключение Java средствами Fedora" - - #: ../src/workflows/workflow_LoggerCCpp.xml.in.h:1 - #: ../src/workflows/workflow_Logger.xml.in.h:1 - msgid "Export the problem data information to a text file" --msgstr "" -+msgstr "Экспорт сведений об ошибке в текстовый файл" - - #: ../src/workflows/workflow_LoggerCCpp.xml.in.h:2 - #: ../src/workflows/workflow_Logger.xml.in.h:2 -@@ -2914,16 +3125,18 @@ msgid "" - "Analyze the problem locally and export the problem data information to a " - "text file" - msgstr "" -+"Проанализировать проблему локально и экспортировать данные в текстовый файл" - - #: ../src/workflows/workflow_MailxCCpp.xml.in.h:1 - #: ../src/workflows/workflow_Mailx.xml.in.h:1 - msgid "Send the problem data via email" --msgstr "" -+msgstr "Отправить сведения об ошибке по электронной почте" - - #: ../src/workflows/workflow_MailxCCpp.xml.in.h:2 - #: ../src/workflows/workflow_Mailx.xml.in.h:2 - msgid "Analyze the problem locally and send information via email" - msgstr "" -+"Проанализировать проблему локально и отправить данные по электронной почте" - - #: ../src/workflows/workflow_UploadCCpp.xml.in.h:1 - #: ../src/workflows/workflow_Upload.xml.in.h:1 -@@ -2975,12 +3188,12 @@ msgstr "Проанализировать ошибку X Server с использ - #: ../src/workflows/workflow_RHELLibreport.xml.in.h:2 - #: ../src/workflows/workflow_RHELBugzillaLibreport.xml.in.h:2 - msgid "Process the problem using the Red Hat infrastructure" --msgstr "Обработать ошибку, используя средства Red Hat" -+msgstr "Обработать ошибку средствами Red Hat" - - #: ../src/workflows/workflow_RHELJava.xml.in.h:2 - #: ../src/workflows/workflow_RHELBugzillaJava.xml.in.h:2 - msgid "Process the Java exception using the Red Hat infrastructure" --msgstr "Обработать исключение Java, используя средства Red Hat" -+msgstr "Обработать исключение Java средствами Red Hat" - - #: ../src/workflows/workflow_RHELBugzillaCCpp.xml.in.h:1 - #: ../src/workflows/workflow_RHELBugzillaKerneloops.xml.in.h:1 -diff --git a/po/sk.po b/po/sk.po -index b86ec33..15d1c83 100644 ---- a/po/sk.po -+++ b/po/sk.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/sk/)\n" - "Language: sk\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -181,46 +181,43 @@ msgstr "Zvoľte udalosť pre spustenie:" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Extrahujem cpio z {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Nie je možné zapisovať do '{0}': {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Nie je možné rozbaliť balíček '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Uchovávam súbory z {0} vytvorené z {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Nie je možné rozbaliť súbory z '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Nie je možné zmazať '{0}': {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Sťahujem ({0} z {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -228,83 +225,90 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Hľadám potrebné balíky v repozitároch" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Nie je možné nájsť balíčky pre {0} debuginfo súbory" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Balíčky na stiahnutie: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Sťahujem {0:.2f}Mb, inštalovaná veľkosť: {1:.2f}Mb. Pokračovať?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Sťahovanie prerušené používateľom" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Sťahovanie balíčku {0} zlyhalo" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Rozbaľovanie zlyhalo, prerušujem sťahovanie" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Vymazávam {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -312,37 +316,37 @@ msgstr "" - "Problém '{0!s}' nastal pri sťahovaní z odkazu: '{1!s}'. Pripájanie k " - "ďalšiemu odkazu" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Chyba pri spúšťaní yum-u (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Chyba: nemožno vytvoriť cachedir, ukončovanie" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Nemožno zablokovať repozitár '{0!s}': {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Nemožno zakázať asynchrónne sťahovanie, výstup môže obsahovať artefakty!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Nie je možné nastaviť {0}: {1}, vypínam" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Chyba pri získavaní metadát: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Chyba pri získavaní zoznamu súborov: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -391,7 +395,7 @@ msgstr "Udalosti" - msgid "C_onfigure" - msgstr "K_configurovať" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -417,7 +421,7 @@ msgstr "Secret Service nie je dostupné, Vaše nastavenia nebudú uložené!" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -504,7 +508,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternatívny súbor pre GUI" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -513,15 +517,15 @@ msgstr "" - "Je potrebný zapisovateľný adresár, adresár '%s' však zapisovateľný nie je. " - "Presunúť tento adresár do '%s' a pracovať s presunutými dátami?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Zobraziť/editovať textový súbor" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -529,39 +533,39 @@ msgstr "" - "Žiadne cieľe pre hlásenia nie sú definované. Skontrolujte konfiguráciu v /" - "etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(požaduje: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(nie je potrebné, dáta už existujú: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(kliknúť sem pre náhľad/úpravy)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binárny súbor, %llu byte-ov)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(žiadny popis)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu byte-ov, %u súborov" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Spracovanie bolo zrušené" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -570,7 +574,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -578,7 +582,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -590,77 +594,50 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Spracovanie zlyhalo." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Spracovanie ukončené." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Spracovanie ukončené, prosím pristúpte k ďalšiemu kroku." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Nie je definované žiadne spracovanie pre udalosť '%s'" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Spracovanie prerušené: nemožno pokračovať bez zapisovateľného priečinka." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Spracovávam..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Nemožno skontrolovať backtrace rating z dôvodu neplatného názvu udalosti" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -669,101 +646,109 @@ msgstr "" - "Udalosť '%s' vyžaduje povolenie k odoslaniu potecionálne citlivých údajov. " - "Chcete pokračovať?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Tento problém by nemal byť ohlásený (jedná sa pravdepodobne o známy problém)." - " %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' nie je bežný súbor" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Pokúšate sa skopírovať súbor sám na seba" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Nie je možné skopírovať '%s': %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Položka '%s' už existuje a nie je možné ju meniť" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Zahrnúť" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Názov" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Hodnota" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Popis problému" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Vyberte ako ohlásiť tento problém" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Poskytnúť dodatočné informácie" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Skontrolovať dáta" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Skontrolovať dáta k ohláseniu" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Spracovávanie" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Spracovávanie ukončené" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Odoslať na analýzu" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detaily" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -814,26 +799,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -843,7 +808,7 @@ msgstr "" - "spôsobu analýzy problému, kontrolu zozbieraných dát a vybratie miesta, kam " - "problém nahlásiť. Pre pokračovanie stlačte 'Vpred'." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -853,11 +818,11 @@ msgstr "" - "Akékoľvek iné komentáre, ktoré by mohli pomôcť pri riešení problému? Prosím " - "použite angličtinu." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Pre pokračovanie musíte vyplniť postup..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -865,31 +830,31 @@ msgstr "" - "Vaše komentáre sú verejné. Môžu byť zahrnuté do verejne viditeľných " - "správ o problémoch." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Ak neviete ako to opísať, môžte" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "pridať screencast" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Neviem, čo spôsobilo problém" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Veľkosť:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Pripojiť súbor" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Skontroloval som dáta a _suhlasím s ich odoslaním" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -900,19 +865,19 @@ msgstr "" - "príkazový riadok a premenné prostredia sú typickými položkami, ktoré je " - "potrebné skontrolovať." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Spracovávanie ešte nie je zahájené" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Zobraziť log" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Hlásenie ukončené. Teraz môžte zatvoriť okno." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -922,16 +887,15 @@ msgstr "" - "poskytnuť lepší popis problému a zopakovať proces nahlásenia, stlačte " - "'Vpred'." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Aktivovať verbose režim" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Priečinok s problémom" - -@@ -957,89 +921,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "a" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Chýba požadovaná položka: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid hodnota nie je platná: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Chýba požadovaná položka: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Odoslané: %llu z %llu kbyte-v" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Odosielam %s na %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Úspešne odoslané %s do %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Chýbajú povinné hodnoty" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Neplatný utf8 znak '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Neplatné číslo '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Neplatná logická hodnota '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Nepodporovaný typ voľby" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Prosím nahláste tento problém vývojárom ABRT project." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1047,15 +1052,15 @@ msgstr "" - "Backtrace je nekompletný, prosím uistite sa, že ste poskytli kroky pre " - "reprodukciu." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "Backtrace pravdepodobne nepomôže vývojárom diagnostikovať chybu." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Hlásenie problémov je zakázané pretože backtrace je nepoužiteľný." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1064,11 +1069,26 @@ msgstr "" - "Prosím skúste nainštalovať debuginfo manuálne použitím príkazu: \"debuginfo-" - "install %s\" a následne pokus zopakujte." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "Vhodné debuginfo pravdepodobne chýbajú alebo coredump je poškodený." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1077,58 +1097,68 @@ msgstr "%s je pravdepodobne príčina Vášho problému\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Váš problém vyzerá byť zapríčinený jednou z nasledujúcich príčin:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "Nepodarilo sa odoslať uReport na server '%s' s curl: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' neexistuje (chybový kód 404)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "Server na '%s' narazil na internú chybu (chybový kód 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "Odpoveď od '%s' má neplatný formát" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "Typová nezhoda bola detekovaná v odpovedi od '%s'" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Podanie problému zlyhalo" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "Server na '%s' odpovedal s chybou: '%s'" -@@ -1159,21 +1189,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' bol ukončený signálom %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' bolo úspešne ukončené)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' skončil s %u)\n" -@@ -1258,32 +1301,52 @@ msgid "Bugzilla account password" - msgstr "Bugzilla heslo" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Adresa Bugzilla serveru" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Overiť SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Kontrolovať validnosť SSL kľúča" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Produkt Bugzilly" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1291,11 +1354,11 @@ msgstr "" - "Toto uveďte len v prípade ak potrebujete rozdielny produkt od uvedeného v\n" - "/etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Verzia produktu Bugzilly" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1304,8 +1367,8 @@ msgstr "" - "uvedenej v\n" - "/etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1314,8 +1377,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP Proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1324,8 +1387,8 @@ msgstr "HTTP Proxy" - msgid "Sets the proxy server to use for HTTP" - msgstr "Nastaví proxy server na použitie pre HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1334,8 +1397,8 @@ msgstr "Nastaví proxy server na použitie pre HTTP" - msgid "HTTPS Proxy" - msgstr "HTTPS Proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1344,27 +1407,6 @@ msgstr "HTTPS Proxy" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Nastaví proxy server na použitie pre HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1402,13 +1444,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Nemožno pokračovať bez prihlásenia" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Nemožno pokračovať bez hesla" -@@ -1421,10 +1463,9 @@ msgstr "Prihlasovanie do Bugzilly na %s" - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"Neplatné heslo alebo meno. Prosím zadajte svoje Bugzilla prihlasovacie údaje:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "Neplatné heslo alebo meno. Prosím zadajte heslo pre '%s':" -@@ -1439,7 +1480,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1474,78 +1515,95 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Konfiguračný súbor (môže byť daný viac krát)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Formátovanie súboru pre počiatočný komentár" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Formátovanie súboru pre duplikáty" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Pripojiť SUBORy [k problému s týmto ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Pripojiť binárne súbory pri vytváraní chyby" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Vynútiť ohlásenie problému aj pokiaľ už bol tento problém ohlásený" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "Pridať bugzilla používateľa do CC zoznamu [bug s týmto ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Vypísať BUG_ID ktorý dal DUPHASH" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Obmedziť prístup iba tejto skupine" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Debug" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Hľadanie podobných problémov na bugzille" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" --"Prihlásenie nie je poskytnuté konfiguráciou. Prosím zadajte svoje Bugzilla " --"prihlasovacie údaje:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "Heslo nie je poskytnuté konfiguráciou. Prosím zadajte heslo pre '%s':" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1553,7 +1611,7 @@ msgstr "" - "Nepodarilo sa obdržať Bugzilla ID pretože tento problém ešte nebol nahlásený " - "na Bugzille." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1562,75 +1620,97 @@ msgstr "" - "Tento problém bol nahlásený na Bugzillu '%s', ktorá sa líši od " - "nakonfigurovanej Bugzilly '%s'." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Nesprávne formulované URL pre Bugzillu '%s'." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID '%s' sa momentálne používa" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Odhlasujem" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "Nepodarilo sa určiť Bugzilla Product z údajov o probléme" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Hľadám duplikáty" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Vytváram novú chybu" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Pridávam prílohy k chybe %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Chyba už bola nahlásená: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "Pridávanie %s do CC zoznamu" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Pridávam nový komentár k chybe %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Pridávam lepší backtrace" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "Nájdený rovnaký komentár v histórií chyby, nepridávam nový" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Stav: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1664,7 +1744,7 @@ msgstr "" - "Parameter je možné zmeniť pomocou $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Konfiguračný súbor" - -@@ -1694,12 +1774,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Odosielam email..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Email bol odoslaný na: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1713,11 +1793,11 @@ msgstr "" - "\n" - "Ak nie je špecifikované inak, CONFFILE je nastavený na " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Konfiguračný súbor" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Iba odoslať nofitikáciu (neoznačovať hlásenie ako odoslané)" - -@@ -1752,34 +1832,34 @@ msgstr "Zrušené používateľom." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Nie je možné otvoriť '%s' pre zápis. Prosím vyberte iný súbor:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Správa bola pridaná do %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Správa bola uložená do %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "Server odpovedal s chybou: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Želáte si stále vytvoriť RHTSupport tiket?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1788,77 +1868,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Nahrať SUBORy [k problému s týmto ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Pripájam '%s' k problému '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Prebieha kompresia dát" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Vyhľadávanie tipov a rád" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Vytváranie nového prípadu" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "Nepodarilo sa určiť RH Support Product z údajov o probléme" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Pridávanie komentáru k prípadu '%s'" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Pridávanie údajov o probléme k prípadu '%s'" -@@ -1871,41 +1955,49 @@ msgstr "Dokumentácia, ktorá by mohla byť relevantná: " - msgid "Updates which possibly help: " - msgstr "Aktualizácie, ktoré by mohli problém riešiť: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Archív je vytvorený: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Základ URL (cieľ upload-u)" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1922,7 +2014,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1965,48 +2057,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2014,47 +2106,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2090,39 +2182,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2288,6 +2383,22 @@ msgstr "FTP Proxy" - msgid "Sets the proxy server to use for FTP" - msgstr "Nastaví proxy server na použitie pre FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2355,24 +2466,24 @@ msgstr "" - "Chyba %i je ozačená ako CLOSED (uzavretá) a DUPLICATE (duplikát), avšak " - "chýba DUP_ID (id duplikátu)" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Nová chyba, ID: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla nenašla rodičovskú chybu k chybe %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Návratová hodnota Bug.search(quicksearch) neobsahuje súčasť 'bugs'" - -@@ -2565,65 +2676,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Špecifikovať server URL" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Umožniť nezabezpečené pripojenie k ureport serveru." - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2632,51 +2767,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Tento problem nemá priradený uReport." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Tento problém nebol ohlásený na Bugzille." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Nepodarilo sa nájsť bug ID v Bugzilla URL '%s'" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Nepodarilo sa analyzovať bug ID u Bugzilla URL '%s'" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Pre pripojenie je potrebné špecifikovať bthash uReport-u." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Nemožno odoslať prázdny uReport" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Tento problém už bol nahlásený." - -diff --git a/po/sr.po b/po/sr.po -index d9725a0..3711040 100644 ---- a/po/sr.po -+++ b/po/sr.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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: 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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -174,46 +174,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -221,118 +218,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -381,7 +385,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -407,7 +411,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -486,60 +490,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -548,7 +552,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -556,7 +560,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -568,174 +572,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Име" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Детаљи" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -782,109 +767,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -910,89 +874,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "Д" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "Н" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1000,84 +1005,109 @@ msgstr "" - "Backtrace је недовршен, постарајте се да дате кораке потребне за " - "репродукцију" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Пријављивање је онемогућено backtrace је неупотрбљив." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1108,21 +1138,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1203,49 +1246,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1254,8 +1317,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1264,8 +1327,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1274,8 +1337,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1284,27 +1347,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1333,13 +1375,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1354,7 +1396,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1369,7 +1411,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1404,157 +1446,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1579,7 +1662,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1609,12 +1692,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1623,11 +1706,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1659,34 +1742,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1695,77 +1778,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1778,41 +1865,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1829,7 +1924,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1872,48 +1967,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1921,47 +2016,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1997,39 +2092,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2191,6 +2289,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2256,24 +2370,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2466,65 +2580,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2533,51 +2671,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/sr@latin.po b/po/sr@latin.po -index a29997d..d51a6bb 100644 ---- a/po/sr@latin.po -+++ b/po/sr@latin.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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: 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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -174,46 +174,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -221,118 +218,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -381,7 +385,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -407,7 +411,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -486,60 +490,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -548,7 +552,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -556,7 +560,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -568,174 +572,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Imе" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Dеtalji" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -782,109 +767,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -910,89 +874,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "D" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" -+msgid "Sending %s to %s//%s" - msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" - msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1000,84 +1005,109 @@ msgstr "" - "Backtrace jе nеdovršеn, postarajtе sе da datе korakе potrеbnе za " - "rеprodukciju" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Prijavljivanjе jе onеmogućеno backtrace jе nеupotrbljiv." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1108,21 +1138,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1203,49 +1246,69 @@ msgid "Bugzilla account password" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 --msgid "Bugzilla URL" -+msgid "Restrict access" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:9 --msgid "Address of Bugzilla server" -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" - msgstr "" - - #: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+msgid "Bugzilla URL" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+msgid "Address of Bugzilla server" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1254,8 +1317,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1264,8 +1327,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1274,8 +1337,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1284,27 +1347,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1333,13 +1375,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1354,7 +1396,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1369,7 +1411,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1404,157 +1446,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1579,7 +1662,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "" - -@@ -1609,12 +1692,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1623,11 +1706,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1659,34 +1742,34 @@ msgstr "" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1695,77 +1778,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1778,41 +1865,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1829,7 +1924,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1872,48 +1967,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1921,47 +2016,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -1997,39 +2092,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "" -@@ -2191,6 +2289,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2256,24 +2370,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2466,65 +2580,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2533,51 +2671,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/sv.po b/po/sv.po -index 2e68cad..cc4c932 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -10,11 +10,12 @@ - # Copyright © 2015, Red Hat Inc. - # This file is distributed under the same license as the libreport package. - # Göran Uddeborg , 2011, 2013, 2015. -+# Göran Uddeborg , 2015. #zanata - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -23,7 +24,7 @@ msgstr "" - "Language-Team: Swedish \n" - "Language: sv\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -186,86 +187,83 @@ msgstr "Välj en händelse att köra: " - msgid "Select a workflow to run: " - msgstr "Välj ett arbetsflöde att köra: " - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Extraherar cpio från {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Det går inte skriva till ”{0}”: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Kan inte extrahera paket ”{0}”" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Cachade filer från {0} skapade från {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Det går inte extrahera filer från ”{0}”" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "Kan inte extrahera filer från ”{0}”. För mer information, se ”{1}”" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Kan inte ta bort ”{0}”: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Laddar ner ({0} av {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" --msgstr "" -+msgstr "Initierar pakethanteraren" - - #. if verbose == 0: - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" --msgstr "" -+msgstr "Sätter upp förråd" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Letar i förvaringsplatsen efter krävda paket" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Det går inte hitta paketen med felsökningsinformationsfiler för {0}" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Paket att ladda ner: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "Laddar ner {0:.2f}Mb, installationsstorlek: {1:.2f}Mb. Fortsätta?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Nerladdning avbruten av användare" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -273,7 +271,7 @@ msgstr "" - "Varning: inte tillräckligt med fritt utrymme i temporärkatalogen ”{0}” ({1:." - "2f} MB kvar). Fortsätta?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -282,38 +280,47 @@ msgstr "" - "Varning: inte tillräckligt med fritt utrymme i cache-katalogen ”{0}” ({1:." - "2f} MB kvar). Fortsätta?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Nerladdning av paket {0} misslyckades" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Uppackning misslyckades, avbryter nerladdning..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+"”{0}” måste ägas av abrt. Kör ”# chown -R abrt.abrt {0}” för att rätta " -+"felet." -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Tar bort {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" --msgstr "" -+msgstr "Kan inte ta bort {0}, förmodligen innehållande en fellogg" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" --msgstr "" -+msgstr "Fel när förrådskonfigurationen lästes: ”{0!s}”" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" --msgstr "" -+msgstr "Fel när förråd sattes upp: ”{0!s}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -321,38 +328,38 @@ msgstr "" - "Problemet ”{0ls}” inträffade under nerladdning från spegel: ”{1ls}”. " - "Försöker med nästa" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "Fel vid initiering av yum (YumBase.doConfigSetup): ”{0ls}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Fel: kan inte skapa cache-katalog, avslutar" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Det går inte att avaktivera förvaringsplatsen ”{0ls}”: {1ls}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Kan inte avaktivera asynkron nerladdning, slutprodukten kan komma att " - "innehålla artefakter!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Det går inte ställa in {0}: {1}, avaktiverar" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Fel när metadata hämtades: ”{0ls}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Fel när fillistor hämtades: ”{0ls}”" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "Kan inte kopiera filen ”{0}”: {1}" -@@ -401,7 +408,7 @@ msgstr "Händelser" - msgid "C_onfigure" - msgstr "K_onfiguration" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Stäng" - -@@ -429,7 +436,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Avbryt" - -@@ -520,7 +527,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Alternativ fil för grafiskt gränssnitt" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -529,15 +536,15 @@ msgstr "" - "Behöver en skrivbar katalog, men ”%s” är inte skrivbar. Flytta den till " - "”%s” och arbeta med det flyttade datan?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Visa/redigera en textfil" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "_Spara" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -545,39 +552,39 @@ msgstr "" - "Inga rapporteringsmål har angetts för detta problem. Kontrollera " - "konfigurationen i /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(kräver: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(ej nödvändigt, datan finns redan: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(klicka här för att se/redigera)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(binär fil, %llu byte)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(ingen beskrivning)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu byte, %u filer" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Bearbetningen avbröts" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -591,7 +598,7 @@ msgstr "" - "\t▫ trasiga problemdata\n" - "\t▫ felaktig konfiguration" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -603,7 +610,7 @@ msgstr "" - "i programmenyn och, efter att ha verkställt ändringarna av konfigurationen, " - "klicka på knappen Gör om." - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -623,103 +630,53 @@ msgstr "" - "lösenord. Den skickade datan lagras i skyddat lagringsutrymme och bara ett " - "begränsat antal personer kan läsa den." - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "Bearbetning avbröts för att problemet inte är rapporterbart." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Bearbetning misslyckades." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Bearbetning avslutad." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Bearbetning avslutad, fortsätt till nästa steg." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"Ett privat ärende är begärt men gruppnamnet ”private” är föråldrat. Vi ber " --"dig vänligen använda gruppnamnet ”fedora_contrib_private”. Klicka på " --"knappen Ja eller uppdatera konfigurationen manuellt. Eller klicka på " --"knappen No, om du verkligen vill använda gruppen ”private”.\n" --"\n" --"Om du inte är säker på vad denna dialog betyder, lita på oss och tryck på " --"knappen Ja.\n" --"\n" --"Läs mer om privata felrapporter på:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"Ett privat ärende är begärt men gruppnamnet private är föråldrat. Vi " --"ber dig vänligen använda gruppnamnet fedora_contrib_private. Klicka " --"på knappen Ja eller uppdatera konfigurationen manuellt. Eller klicka på " --"knappen No, om du verkligen vill använda gruppen private.\n" --"\n" --"Om du inte är säker på vad denna dialog betyder, lita på oss och tryck på " --"knappen Ja.\n" --"\n" --"Läs mer om privata felrapporter på:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Ingen bearbetning för händelsen ”%s” är definierad" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Bearbetning avbruten: det går inte fortsätta utan en skrivbar katalog." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Bearbetar..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+"Eventuellt känslig data upptäcktes, redigera om du vill rapporten och ta " -+"bort dem." -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Det går inte kontrollera stackspårningsvärdering med ett ogiltigt " - "händelsenamn" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -728,100 +685,108 @@ msgstr "" - "Händelsen ”%s” begär tillstånd att skicka möjligen känslig data.\n" - "Vill du fortsätta?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Detta problem bör inte rapporteras (det är förmodligen ett känt problem). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Öppna" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "”%s” är inte en vanlig fil" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Du försöker kopiera en fil på sig själv" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Det går inte att kopiera ”%s”: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Post ”%s” finns redan och går inte att ändra" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Inkludera" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Namn" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Värde" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Problembeskrivning" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Välj hur problemet skall rapporteras" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Ge ytterligare information" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Granska data" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Bekräfta data att rapportera" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Bearbetar" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Bearbetning avslutad." - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "_Stopp" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Skicka för analys" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "Gör om" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Framåt" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detaljer" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Begränsa åtkomst till rapporten" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -877,30 +842,6 @@ msgstr "Sök" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" --"Eventuellt känslig data upptäcktes, redigera om du vill rapporten och ta " --"bort dem." -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Begränsa åtkomst till rapporten" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Ingen utom medlemmar i gruppen Fedora Contrib kommer tillåtas att se " --"rapporten med begränsad åtkomst (inte ens du)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Läs mer om rapporter med begränsad åtkomst" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -911,7 +852,7 @@ msgstr "" - "insamlade data och att välja vart problemet ska rapporteras. Klicka på " - "”Framåt” för att fortsätta." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -921,11 +862,11 @@ msgstr "" - "Eventuella ytterligare kommentarer som kan vara användbara för att " - "diagnostisera problemet? Använd om möjligt engelska." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "Du måste fylla i hurdelen innan du kan fortsätta …" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -933,31 +874,31 @@ msgstr "" - "Dina kommentarer är inte privata. De kan komma att ingå i allmänt " - "tillgängliga problemrapporter." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Om du inte vet hur du skall beskriva det kan du" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "lägga till en skärminspelning" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Jag vet inte vad som orsakade detta problem" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Storlek:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Bifoga en fil" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Jag granskade datan och _godkänner att lämna in den" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -967,19 +908,19 @@ msgstr "" - "personlig information (till exempel användarnamn och lösenord). Stackspår, " - "kommandorad, miljövariabler är de saker som typiskt behöver undersökas." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Bearbetning har inte börjat ännu" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Visa logg" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Rapporteringen är avslutad. Du kan stänga detta fönster nu." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -989,16 +930,15 @@ msgstr "" - "ytterligare information eller ge en bättre problembeskrivning och upprepa " - "rapporteringen, tryck på ”Framåt”." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Var utförlig" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Problemkatalog" - -@@ -1024,78 +964,119 @@ msgstr "inte en problemkatalog" - msgid "Can't delete '%s': %s" - msgstr "Det går inte att radera: ”%s”: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "j" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Nödvändig del saknas: ”%s”" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid-värde är ogiltigt: ”%s”" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Nödvändig del saknas: ”%s”" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Skickade: %llu av %llu kbyte" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Skickar %s till %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" --msgstr "Ange användarnamnet för ”%s”:" -+msgid "Please enter user name for '%s//%s':" -+msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" --msgstr "Ange lösenordet för ”%s”:" -+msgid "Please enter password for '%s//%s@%s':" -+msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Skickade %s till %s" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Saknat obligatoriskt värde" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Ogiltigt utf8-tecken ”%c”" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Ogiltigt tal ”%s”" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Ogiltigt booleskt värde ”%s”" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Flaggtypen stödjs inte" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1104,28 +1085,28 @@ msgstr "" - "Problemet kan inte rapporteras på grund av felaktiga data. Filen ”%s” " - "innehåller inte ett tal." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Rapportera detta problem till projektutvecklarna för ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "" - "Stackspåret är ofullständigt, se till att du ger steg för att återskapa." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "Stackspåret kan förmodligen inte hjälpa en utvecklar att diagnostisera felet." - "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Rapportering avslagen för att stackspåret är oanvändbart." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1134,13 +1115,28 @@ msgstr "" - "Försök att installera felsökningsinformation manuellt med kommandot: " - "”debuginfo-install %s” och försök igen" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "Tillbörlig felsökningsinformation saknas troligen, eller kärndumpen är " - "trasig." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1149,59 +1145,69 @@ msgstr "Ditt problem verkar orsakas av %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Ditt problem verkar orsakas av en av följande:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "Misslyckades att skicka uReport till servern ”%s” med curl: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL:en ”%s” finns inte (fick felet 404 från servern)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "Servern på ”%s” stötte på ett internt fel (fick felet 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - "Servern på ”%s” kan för närvarande inte hantera begäran (fick fel 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "Oväntat HTTP-svar från ”%s”: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "Kan inte tolka svaret från ureport-servern på ”%s”" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "Svaret från ”%s” har ogiltigt format" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "Typer som inte stämmer överens har hittats i svaret från ”%s”" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Misslyckades att skicka problemet" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "Servern på ”%s” svarade med ett fel: ”%s”" -@@ -1232,21 +1238,34 @@ msgstr "Kan inte tolka stacksåret: %s" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "Kan inte generera beskrivning av stackspåret (ingen kraschtråd?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" --msgstr "" -+msgstr "Noteringen innehåller inte en gradering" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "(”%s” dödades av signal %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "(”%s” avslutades riktigt)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "(”%s” avslutade med %u)\n" -@@ -1330,32 +1349,57 @@ msgid "Bugzilla account password" - msgstr "Bugzillakontots lösenord" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Begränsa åtkomst" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Begränsa åtkomst till det skapade bugzilla-ärendet och tillåt endast " -+"användare från angivna grupper att se det (se avancerade inställningar för " -+"fler detaljer)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Grupper" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Begränsa åtkomsten till angivna grupper <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla-URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Adress till Bugzilla-servern" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Verifiera SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Kontrollera SSL-nyckelns giltighet" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzillaprodukt" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1363,11 +1407,11 @@ msgstr "" - "Ange detta endast om du behövde en annan produkt än som angavs i /etc/os-" - "release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzillaproduktens version" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1375,8 +1419,8 @@ msgstr "" - "Ange detta endast om du behövde en annan produktversion än som angavs i /etc/" - "os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1385,8 +1429,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP-proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1395,8 +1439,8 @@ msgstr "HTTP-proxy" - msgid "Sets the proxy server to use for HTTP" - msgstr "Anger proxyservern som skall användas för HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1405,8 +1449,8 @@ msgstr "Anger proxyservern som skall användas för HTTP" - msgid "HTTPS Proxy" - msgstr "HTTPS-proxy" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1415,32 +1459,6 @@ msgstr "HTTPS-proxy" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Anger proxyservern som skall användas för HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Begränsa åtkomst" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Begränsa åtkomst till det skapade bugzilla-ärendet och tillåt endast " --"användare från angivna grupper att se det (se avancerade inställningar för " --"fler detaljer)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Grupper" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Begränsa åtkomsten till angivna grupper <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1480,13 +1498,13 @@ msgstr "" - "ignorerar miljövariabeln och konfigurationen" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Kan inte fortsätta utan inloggning" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Kan inte fortsätta utan lösenord" -@@ -1498,10 +1516,10 @@ msgstr "Loggar in på Bugzilla på %s" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "Ogiltigt lösenord eller inloggning. Ange din Bugzilla-inloggning:" -+msgstr "Felaktigt lösenord eller inloggning. Ange din Bugzilla-inloggning:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "Ogiltigt lösenord eller inloggning. Ange lösenordet för ”%s”:" -@@ -1516,7 +1534,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1550,111 +1568,91 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GRUPPNAMN]… [-c KONFFIL]… [-F FMTFIL] [-A FMTFIL2] -d KAT\n" --"eller:\n" --"& [-v] [-c KONFFIL]… [-d KAT] -t[ID] FIL…\n" --"eller:\n" --"& [-v] [-c KONFFIL]… [-d KAT] -t[ID] -w\n" --"eller:\n" --"& [-v] [-c KONFFIL]… -h DUPHASH\n" --"\n" --"Rapporterar problem till Bugzilla.\n" --"\n" --"Verktyget läser KAT. Sedan loggar det in på Bugzilla och försöker hitta en\n" --"rapport med samma abrt_hash:HEXSTRING i \"Whiteboard\".\n" --"\n" --"Om ingen sådan rapport finns skapas en ny felrapport. Bitar från KAT\n" --"lagras i felrapporten som en del av felbeskrivningen eller som bilagor,\n" --"beroende på deras typ och storlek.\n" --"\n" --"Annars, om en sådan rapport finns och är markerad som CLOSED DUPLICATE,\n" --"följer verktyget kedjan av dubbletter tills det hittar en rapport som inte\n" --"är en dubblett. Verktyget lägger till en ny kommentar till den funna\n" --"rapporten.\n" --"\n" --"Flaggan -t skickar FILer till en redan skapat rapport på Bugzillawebbplatsen." --"\n" --"Rapport-ID:t hämtas från katalogen som anges av -d KAT. Om problemdatan\n" --"i KAT aldrig rapporterades till Bugzilla misslyckas skickandet.\n" --"\n" --"Flaggan -tID skickar FILer till rapporten med angivet ID på\n" --"ugzillawebbplatsen. -d KAT ignoreras.\n" --"\n" --"Flaggan -w lägger till bugzillaanvändare till rapportens CC-lista.\n" --"\n" --"Flaggan -r sätter den sista url:en från elementet reporter_to som har " --"prefixet\n" --"TRACKER_NAME i URL-fältet. Denna flagga används endast när ett nytt fel " --"skall\n" --"rapporteras. Standardvärdet är ”ABRT Server”\n" --"\n" --"Om inte annat anges är standardvärdet på KONFFIL " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Konfigurationsfil (kan anges flera gånger)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Formaterar filen för första kommentar" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Formaterar filer för dubbletter" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Bifoga FILer [till felrapport med detta ID]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "När ett fel skapas, bifoga då även binära filer" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Tvinga rapportering även om detta problem redan rapporterats" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "Lägg till bugzilla-användare till CC-listan [till felet med detta ID]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Visa BUG_ID med given DUPHASH" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "Ett namn på en felhanterare för en ytterligare URL från ”reported_to”" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Begränsa åtkomst till endast denna grupp" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Felsök" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Letar efter liknande problem i bugzilla" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." - msgstr "" --"Inloggning tillhandahålls inte av konfigurationen. Ange din Bugzilla-inloggning:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+"Inloggning tillhandahålls inte av konfigurationen. Angi din Bugzilla-" -+"inloggning:" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1662,7 +1660,7 @@ msgid "" - msgstr "" - "Lösenord tillhandahålls inte av konfigurationen. Ange lösenordet för ”%s”:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1670,7 +1668,7 @@ msgstr "" - "Kan inte hämta Bugzilla-ID eftersom detta problem inte har rapporterats till " - "Bugzilla ännu." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1679,75 +1677,97 @@ msgstr "" - "Detta problem har inte rapporterats till Bugzilla ”%s” vilket skiljer sig " - "från den konfigurerade Bugzillan ”%s”." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Felformaterad url till Bugzilla ”%s”." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Använder Bugzilla-ID ”%s”" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Loggar ut" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "Kan inte avgöra Bugzilla-produkt från problemdata." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Söker efter dubbletter" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Skapar en ny felrapport" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Misslyckades att skapa en ny felrapport." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Lägger till extern URL fel %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Inkluderar tillägg till fel %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Felet är redan rapporterat: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "Lägger till %s till CC-listan" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Lägg till ny kommentar till fel(%d)" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Lägger till bättre stackspår" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "Hittade samma kommentar i felhistoriken, lägger inte till en ny" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Status: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1781,7 +1801,7 @@ msgstr "" - "Parameter kan åsidosättas via $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Konfigurationsfil" - -@@ -1813,12 +1833,12 @@ msgstr "Skickar notifieringsbrev till: %s" - msgid "Sending an email..." - msgstr "Skickar ett e-brev …" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "E-post skickades till: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1832,11 +1852,11 @@ msgstr "" - "\n" - "Om den inte anges, är standard för KONFFIL " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Konfigurationsfil" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Endast notifiering (Markera inte rapporten som sänd)" - -@@ -1871,34 +1891,34 @@ msgstr "Användaren avbröt." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "Det går inte att öppna ”%s” för skrivning. Välj en annan fil:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Rapporten lades till till %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Rapporten lagrades i %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "Servern svarade med ett fel: ”%s”" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Vill du fortfarande skapa en problemrapport för RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "Felaktigt lösenord eller inloggning. Ange din Red Hat-inloggning:" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1906,88 +1926,84 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-v] [-c KONFFIL] -d KAT\n" --"or:\n" --"& [-v] [-c KONFFIL] [-d KAT] -t[ID] [-u -C UR_KONFFIL] FIL…\n" --"\n" --"Rapporterar ett problem till RHTSupport.\n" --"\n" --"Om inte angivet är standardvärdet för KONFFIL " - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Skicka FILer [till fall med detta ID]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "Skicka en uReport före ett nytt ärende skapas" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "Konfigurationfil för uReport" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "Inloggning tillhandahålls inte av konfigurationen. Ange din RHTS-inloggning:" - "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Bifogar ”%s” till ärende ”%s”" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "Skickar statistiska data från ABRT-krasch" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Det går inte att skapa en temporärkatalog i " -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Komprimerar data" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Det går inte att skapa en temporärkatalog i " -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Det går inte att skapa en temporärfil i " - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Söker efter ledtrådar" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Skapar ett nytt ärende" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "Kan inte avgöra RH-support-produkt från problemdata." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "Länkar statistikpost från ABRT-krasch till ärendet" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "Länkar statistikpost från ABRT-krasch till kontaktadressen: ”%s”" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Lägger till kommentar till ärendet ”%s”" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Bifogar problemdata till ärendet ”%s”" -@@ -2000,62 +2016,66 @@ msgstr "Dokumentation som möjligen kan vara relevant:" - msgid "Updates which possibly help: " - msgstr "Uppdateringar som kan hjälpa:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Kan inte fortsätta utan URL" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "Ange en URL (scp, ftp, etc.) dit problemdatan skall exporteras:" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "Ange lösenord för att skicka:" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Arkivet är skapat: ”%s”" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d KAT [-c KONFFIL] [-u URL]\n" --"\n" --"Skickar ett komprimerat tar-arkiv av problemkatalogen KAT till URL.\n" --"Om URL inte anges skapas tar-arkivet i " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Bas-URL att skicka till" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "Ange en URL (scp, ftp, etc.) dit problemdatan skall exporteras:" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" --msgstr "" -+msgstr "Angi din MantisBT-inloggning:" - - #: ../src/plugins/reporter-mantisbt.c:86 - msgid "Please enter the password for" --msgstr "" -+msgstr "Ange lösenordet för" - - #: ../src/plugins/reporter-mantisbt.c:97 - msgid "Credentials are not provided by configuration." --msgstr "" -+msgstr "Kreditiv tillhandahålls inte av konfigurationen." - - #: ../src/plugins/reporter-mantisbt.c:121 - msgid "Invalid password or login." --msgstr "" -+msgstr "Felaktigt lösenord eller inloggning." - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2097,104 +2117,149 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" -+"\n" -+"& [-vf] [-c KONFFIL]… [-F FMTFIL] [-A FMTFIL2] -d KAT\n" -+"eller:\n" -+"& [-v] [-c KONFFIL]… [-d KAT] -t[ID] FIL…\n" -+"eller:\n" -+"& [-v] [-c KONFFIL]… [-d KAT] -t[ID] -w\n" -+"eller:\n" -+"& [-v] [-c KONFFIL]… -h DUPHASH\n" -+"\n" -+"Rapporterar problem till MantisBT.\n" -+"\n" -+"Verktyget läser KAT. Sedan försöker dett hitta ett ärende\n" -+"med samma abrt_hash i det anpassade fältet ”abrt_hash”.\n" -+"\n" -+"Om ett sådant ärende inte hittas skapas ett nutt ärende. Delar av KAT\n" -+"lagras i ärendet som en del av ärendebeskrivningen eller som bilagor,\n" -+"beroende på deras typ och storlek.\n" -+"\n" -+"Annar, om ett sådant ärende hittas och det är markerat som CLOSED DUPLICATE\n" -+"följer verktyget kedjan av duplikat tills det hittar ett ärende som inte är\n" -+"DUPLICATE. Verktyget lägger sedan till en ny kommentar till det hittade\n" -+"ärendet.\n" -+"\n" -+"URL:en till det nya eller modifierade ärendet skrivs ut till standard ut och\n" -+"sparas i elementet ”reported_to”.\n" -+"\n" -+"Flaggan -t skickar FIL:er till det redan skapade ärendet på MantisBT sajt.\n" -+"Ärende-ID:t hämtas från katalogen som anges av -d KAT. Om problemdata i\n" -+"KAT aldrig rapporterades till MantisBT kommer det inte gå att skicka.\n" -+"\n" -+"Flaggan -tID skickar FIL:er till ärendet med det angivna ID:t på MantisBT " -+"sajt.\n" -+"-d KAT ignoreras.\n" -+"\n" -+"Flaggan -r sätter den senaste url:en från elementet reporter_to som har\n" -+"prefixet TRACKER_NAME på URL-fältet. Denna flagga används endast när ett\n" -+"nytt ärende skall registreras. Standardvärdet är ”ABRT Server”\n" -+"\n" -+"Om det inte anges är standardvärdet för KONFFIL " - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" --msgstr "" -+msgstr "Bifoga FILer [till ärendet med detta ID]" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." --msgstr "" -+msgstr "Kan inte öppna problemkatalogen ”%s”." - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" --msgstr "" -+msgstr "Letar efter liknande problem på MantisBT" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" -+"Kan inte få tag i MantisBT ID för att detta problem inte har rapporterats " -+"ännu till MantisBT." - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" -+"Detta problem har rapporterats till MantisBT ”%s” som skiljer från den " -+"konfigurerade MantisBT ”%s”." - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." --msgstr "" -+msgstr "Felformad url till MantisBT ”%s”." - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" --msgstr "" -+msgstr "Använder MantisBT ID ”%s”" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" --msgstr "" -+msgstr "Bifogar filen ”%s” till ärende %s" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " - "to create a new issue?" - msgstr "" -+"Detta problem var redan rapporterat till MantisBT (se ”%s”). Vil du ändå " -+"skapa ett nytt ärende?" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" --msgstr "" -+msgstr "Skapar ett nytt ärende" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" --msgstr "" -+msgstr "Felaktigt formaterad fil: %s" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" --msgstr "" -+msgstr "Misslyckades att formatera problemdata" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" --msgstr "" -+msgstr "Lägger till extern URL till ärendet" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" --msgstr "" -+msgstr "Lägger till bilagor till ärende %i" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" --msgstr "" -+msgstr "Felaktig format på dublettfil: ”%s”" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" --msgstr "" -+msgstr "Misslyckades att formatera dublettkommentar från problemdata" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" --msgstr "" -+msgstr "Lägger till en ny kommentar till ärende %d" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" --msgstr "" -+msgstr "Hittade samman kommentar i ärendehistoriken, lägger inte till en ny" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" --msgstr "" -+msgstr "Status: %s%s%s %s/view.php?id=%u" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:1 - msgid "CentOS Bug Tracker" --msgstr "" -+msgstr "CentOS felhanterare" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:2 - #: ../src/workflows/workflow_CentOSCCpp.xml.in.h:1 -@@ -2206,55 +2271,64 @@ msgstr "" - #: ../src/workflows/workflow_CentOSVmcore.xml.in.h:1 - #: ../src/workflows/workflow_CentOSXorg.xml.in.h:1 - msgid "Report to CentOS Bug Tracker" --msgstr "" -+msgstr "Rapportera till CentOS felhanterare" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:4 - msgid "CentOS Bug Tracker account user name" --msgstr "" -+msgstr "Användarnamn för konto i CentOS felhanterare" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:5 - msgid "" - "You can create bugs.centos.org account <a href=\"https://bugs.centos.org/" - "signup_page.php\">here</a>" - msgstr "" -+"Du kan skapa ett konto på bugs.centos.org <a href=\"https://bugs.centos." -+"org/signup_page.php\">här</a>" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:7 - msgid "CentOS Bug Tracker account password" --msgstr "" -+msgstr "Lösenord för konto i CentOS felhanterare" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 --msgid "Address of CentOS Bug Tracker server" -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "URL till CentOS felhanterare" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+msgid "Address of CentOS Bug Tracker server" -+msgstr "Adress till servern för CentOS felhanterare" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" --msgstr "" -+msgstr "Projekt i CentOS felhanterare" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" -+"Ange detta endast om du behöver ett annat projekt än som är angivet i /etc/" -+"os-release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" --msgstr "" -+msgstr "Projektversion i CentOS felhanterare" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" -- --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -+"Ange detta endast om du behöver en annan version än som är angivet i /etc/os-" -+"release" - - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" -@@ -2423,6 +2497,22 @@ msgstr "FTP-proxy" - msgid "Sets the proxy server to use for FTP" - msgstr "Anger proxyservern som skall användas för FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2491,7 +2581,7 @@ msgstr "Fel %i är STÄNGD, men den har LÖSNING" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Fel %i är STÄNGD som DUPLIKAT, men det har ingen DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2501,163 +2591,172 @@ msgstr "" - "github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets för mer " - "information" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Nytt fel-id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla kunde inte hitta föräldern till felet %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) returvärde innehöll inte medlemmen ”bugs” " - - #: ../src/plugins/mantisbt.c:123 - #, c-format - msgid "MantisBT couldn't find parent of issue %d" --msgstr "" -+msgstr "MantisBT kunde inte hitta föräldern till ärende %d" - - #: ../src/plugins/mantisbt.c:178 - msgid "SOAP: Failed to get child element because of no parent." - msgstr "" -+"SOAP: Kunde inte hämta barnelementet för att det inte finns någon förälder." - - #: ../src/plugins/mantisbt.c:187 - msgid "SOAP: Failed to get next element because of no node." - msgstr "" -+"SOAP: Kunde inte hämta nästa element för att det inte finns någon nod." - - #: ../src/plugins/mantisbt.c:196 - msgid "SOAP: Failed to get child node because of no parent." - msgstr "" -+"SOAP: Kunde inte hämta barnnoden för att det inte finns någon förälder." - - #: ../src/plugins/mantisbt.c:217 - msgid "SOAP: Failed to parse xml during creating request." --msgstr "" -+msgstr "SOAP: Kunde inte tolka xml när begäran skapades." - - #: ../src/plugins/mantisbt.c:225 - msgid "SOAP: Failed to get xml root element." --msgstr "" -+msgstr "SOAP: Kunde inte hämta xml-rotelementet." - - #: ../src/plugins/mantisbt.c:238 - msgid "" - "SOAP: Failed to add a new child node because of no node or no child name." - msgstr "" -+"SOAP: Kunde inte lägga till ett nytt barn för att det inte finns någon nod " -+"eller inget barnnamn." - - #: ../src/plugins/mantisbt.c:243 - msgid "SOAP: Failed to create a new xml child item." --msgstr "" -+msgstr "SOAP: Kunde inte skapa ett nytt xml-barnpost." - - #: ../src/plugins/mantisbt.c:248 - msgid "SOAP: Failed to create a new property." --msgstr "" -+msgstr "SOAP: Kunde inte skapa en ny egenskap." - - #: ../src/plugins/mantisbt.c:258 - msgid "SOAP: Failed to add method parametr." --msgstr "" -+msgstr "SOAP: Kunde inte lägga till en metodparameter." - - #: ../src/plugins/mantisbt.c:287 - msgid "SOAP: Failed to add new issue parametrs." --msgstr "" -+msgstr "SOAP: Kunde inte lägga till nya ärendeparametrar." - - #: ../src/plugins/mantisbt.c:290 - msgid "" - "SOAP: Failed to add new issue parameters because the required items are " - "missing." - msgstr "" -+"SOAP: Kunde inte lägga till nya ärendeparametrar för att den begärda posten " -+"saknas." - - #: ../src/plugins/mantisbt.c:334 - msgid "SOAP: Failed to create a new property in custom fields." --msgstr "" -+msgstr "SOAP: Kunde inte skapa en ny egenskap i anpassade fält." - - #: ../src/plugins/mantisbt.c:352 - msgid "" - "SOAP: Failed to create SOAP string because of invalid function arguments." - msgstr "" -+"SOAP: Kunde inte skapa en SOAP-sträng på grund av felaktiga " -+"funktionsargument." - - #: ../src/plugins/mantisbt.c:359 - msgid "SOAP: Failed to dump xml node." --msgstr "" -+msgstr "SOAP: Kunde inte dumpa xml-noden." - - #: ../src/plugins/mantisbt.c:373 - msgid "SOAP: Failed to print SOAP string." --msgstr "" -+msgstr "SOAP: Kunde inte skriva ut SOAP-strängen." - - #: ../src/plugins/mantisbt.c:380 - msgid "Failed to dump xml node." --msgstr "" -+msgstr "Kunde inte dumpa xml-noden." - - #: ../src/plugins/mantisbt.c:456 - msgid "SOAP: Failed to parse xml (searching value at depth by name)." --msgstr "" -+msgstr "SOAP: Kunde inte tolka xml (söker ett värde via namn vid ett djup)." - - #: ../src/plugins/mantisbt.c:460 ../src/plugins/mantisbt.c:503 - #: ../src/plugins/mantisbt.c:532 - msgid "SOAP: Failed to create xml text reader." --msgstr "" -+msgstr "SOAP: Kunde inte skapa en xml-textläsare." - - #: ../src/plugins/mantisbt.c:499 - msgid "SOAP: Failed to parse xml." --msgstr "" -+msgstr "SOAP: Kunde inte tolka xml." - - #: ../src/plugins/mantisbt.c:528 - msgid "SOAP: Failed to parse xml (get related to issue)." --msgstr "" -+msgstr "SOAP: Kunde inte tolka xml (hämta relterad till ärendet)." - - #: ../src/plugins/mantisbt.c:645 - msgid "Url or request isn't specified." --msgstr "" -+msgstr "Url eller begäran är inte angiven." - - #: ../src/plugins/mantisbt.c:673 - #, c-format - msgid "Error in HTTP POST, HTTP code: 404 (Not found), URL:'%s'" --msgstr "" -+msgstr "Fel i HTTP POST, HTTP-kod: 404 (Ej hittad), URL: ”%s”" - - #: ../src/plugins/mantisbt.c:697 - #, c-format - msgid "Error in MantisBT request at '%s': %s" --msgstr "" -+msgstr "Fel i MantisBT-begäran vid ”%s”: %s" - - #: ../src/plugins/mantisbt.c:699 - #, c-format - msgid "Error in MantisBT request at '%s'" --msgstr "" -+msgstr "Fel i MantisBT-begäran av ”%s”" - - #: ../src/plugins/mantisbt.c:741 - #, c-format - msgid "Failed to attach file: '%s'" --msgstr "" -+msgstr "Kunde inte bifoga en fil: ”%s”" - - #: ../src/plugins/mantisbt.c:760 - #, c-format - msgid "Can't lseek '%s'" --msgstr "" -+msgstr "Kan inte göra lseek ”%s”" - - #: ../src/plugins/mantisbt.c:766 - #, c-format - msgid "Can't upload '%s', it's too large (%llu bytes)" --msgstr "" -+msgstr "Kan inte skicka ”%s”, den är för stor (%llu byte)" - - #: ../src/plugins/mantisbt.c:776 - #, c-format - msgid "Can't read '%s'" --msgstr "" -+msgstr "Kan inte läsa ”%s”" - - #: ../src/plugins/mantisbt.c:792 - #, c-format - msgid "Can't open '%s'" --msgstr "" -+msgstr "Kan inte öppna ”%s”" - - #: ../src/plugins/mantisbt.c:859 - #, c-format - msgid "Failed to search MantisBT issue by duphash: '%s'" --msgstr "" -+msgstr "Misslyckades att leta reda på MantisBT-ärende av dubhash: ”%s”" - - #: ../src/plugins/mantisbt.c:903 - #, c-format - msgid "Failed to search MantisBT duplicate issue: '%s'" --msgstr "" -+msgstr "Misslyckades att leta reda på MantisBT dublettärnede: ”%s”" - - #: ../src/plugins/mantisbt.c:930 - #, c-format -@@ -2665,78 +2764,80 @@ msgid "" - "MantisBT doesn't contain custom field '%s', which is required for full " - "functionality of the reporter. Do you still want to create a new issue?" - msgstr "" -+"MantisBT innehåller inte något anpassat fält ”%s”, som krävs för full " -+"funktionalitet hos rapporteraren. Vill du ändå skapa ett nytt ärende?" - - #: ../src/plugins/mantisbt.c:954 - #, c-format - msgid "Failed to get custom fields for '%s' project" --msgstr "" -+msgstr "Kunde inte få tag i anpassade fält för projektet ”%s”" - - #: ../src/plugins/mantisbt.c:998 - #, c-format - msgid "Failed to create a new issue: '%s'" --msgstr "" -+msgstr "Kunde inte skapa ett nytt ärende: ”%s”" - - #: ../src/plugins/mantisbt.c:1024 - #, c-format - msgid "Failed to get MantisBT issue: '%s'" --msgstr "" -+msgstr "Kunde inte få tag i MantisBT-ärende: ”%s”" - - #: ../src/plugins/mantisbt.c:1038 - #, c-format - msgid "Issue %i is CLOSED, but it has no RESOLUTION" --msgstr "" -+msgstr "Ärende %i är STÄNGT, men det har ingen LÖSNING" - - #: ../src/plugins/mantisbt.c:1046 - #, c-format - msgid "Issue %i is CLOSED as DUPLICATE, but it has no DUPLICATE_ID" --msgstr "" -+msgstr "Ärende %i är STÄNGT som DUBLETT, men det har ingen DUBLETT_ID" - - #: ../src/plugins/mantisbt.c:1083 - #, c-format - msgid "Failed to add MantisBT issue note: '%s'" --msgstr "" -+msgstr "Kunde inte lägga till notering till MantisBT-ärende: ”%s”" - - #: ../src/plugins/mantisbt.c:1097 - msgid "The MantisBT project has not been deretmined." --msgstr "" -+msgstr "MantisBT-projektet har inte avgjorts." - - #: ../src/plugins/mantisbt.c:1106 - msgid "Failed to get project id from name" --msgstr "" -+msgstr "Kunde inte få tag i projekt-id från namnet" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Ange server-URL" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Tillåt osäker koppling till ureportserver" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Använd klientautenticering" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" --msgstr "" -+msgstr "Använd HTTP-autenticering" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "Ytterligare filer inkluderade i ”auth”-nyckeln" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "bthash av uReport att bifoga (står i konflikt med -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "bifoga en bthash från reported_to (står i konflikt med -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "kontakt-epostadress (förutsätter -a|-A, står i konflikt med -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2744,31 +2845,55 @@ msgstr "" - "kontakt-epostadress från miljön eller konfigurationsfilen (förutsätter -a|-" - "A, står i konflikt med -e)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "bifoga RHBZ-fel (förutsätter -a|-A, står i konflikt med -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "bifoga senaste RHBZ-fel från reported_to (förutsätter -a|-A, står i konflikt " - "med -b)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "bifoga en kort text (förutsätter -a|-A, står i konflikt med -D)" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - "bifoga en kort text från kommentaren (förutsätter -a|-A, står i konflikt med " - "-d)" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2777,33 +2902,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "Detta problem har ingen tilldelad uReport." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "Detta problem har inte rapporterats till Bugzilla." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Kan inte hitta fel-ID i bugzilla-URL:en ”%s”" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Kan inte läsa ut fel-ID från bugzilla-URL:en ”%s”" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "Kan inte bifoga kommentaren från ”kommentar”-filen" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "”kommentar”-filen är tom" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2811,19 +2946,19 @@ msgstr "" - "Varken miljövariabeln ”uReport_ContactEmail” eller " - "konfigurationsalternativet ”ContactEmail” är satt" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "Du behöver ange ett fel-ID, kontakt-e-post, kommentar eller allihop" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Du måste ange uReportens bthash för att bifoga." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Skickar inte en tom uReport" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Detta problem har redan rapporterats." - -@@ -2902,35 +3037,35 @@ msgstr "Skicka data via scp eller ftp till en fjärrdestination" - - #: ../src/workflows/workflow_CentOSCCpp.xml.in.h:2 - msgid "Process the C/C++ crash using the CentOS infrastructure" --msgstr "" -+msgstr "Bearbeta C/C++-kraschen med CentOS infrastruktur" - - #: ../src/workflows/workflow_CentOSJava.xml.in.h:2 - msgid "Process the Java exception using the CentOS infrastructure" --msgstr "" -+msgstr "Bearbeta Javaundantaget med CentOS infrastruktur" - - #: ../src/workflows/workflow_CentOSKerneloops.xml.in.h:2 - msgid "Process the kerneloops using the CentOS infrastructure" --msgstr "" -+msgstr "Bearbeta kerneloops:en med CentOS infrastruktur" - - #: ../src/workflows/workflow_CentOSLibreport.xml.in.h:2 - msgid "Process the problem using the CentOS infrastructure" --msgstr "" -+msgstr "Bearbeta problemet med CentOS infrastruktur" - - #: ../src/workflows/workflow_CentOSPython.xml.in.h:2 - msgid "Process the python exception using the CentOS infrastructure" --msgstr "" -+msgstr "Bearbeta pythonundantaget med CentOS infrastruktur" - - #: ../src/workflows/workflow_CentOSPython3.xml.in.h:2 - msgid "Process the python 3 exception using the CentOS infrastructure" --msgstr "" -+msgstr "Bearbeta python 3-undantaget med CentOS infrastruktur" - - #: ../src/workflows/workflow_CentOSVmcore.xml.in.h:2 - msgid "Process the kernel crash using the CentOS infrastructure" --msgstr "" -+msgstr "Bearbeta kärnkraschen med CentOS infrastruktur" - - #: ../src/workflows/workflow_CentOSXorg.xml.in.h:2 - msgid "Process the X Server problem using the CentOS infrastructure" --msgstr "" -+msgstr "Bearbeta X-serverproblemet med CentOS infrastruktur" - - #: ../src/workflows/workflow_FedoraCCpp.xml.in.h:1 - #: ../src/workflows/workflow_FedoraKerneloops.xml.in.h:1 -diff --git a/po/ta.po b/po/ta.po -index b5347e7..e5c4281 100644 ---- a/po/ta.po -+++ b/po/ta.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -22,7 +22,7 @@ msgstr "" - "ta/)\n" - "Language: ta\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -187,46 +187,43 @@ msgstr "இயக்க ஒரு நிகழ்வைத் தேர்ந் - msgid "Select a workflow to run: " - msgstr "இயக்க ஒரு பணிப்பாய்வைத் தேர்ந்தெடுக்கவும்:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "cpio ஐ {0} இலிருந்து இழுக்கிறது" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}' க்கு எழுத முடியாது: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "தொகுப்பு '{0}' ஐ இழுக்க முடியாது" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{0} இலிருந்து செய்யப்பட்ட {1} கோப்புகளை விரைவகப்படுத்துகிறது" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' இலிருந்து கோப்புகளை இழுக்க முடியாது" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}'ஐ நீக்க முடியாது: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "({0} இல் {1}) {2} பதிவிறக்குகிறது: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -234,39 +231,39 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "தொகுப்பதிவகங்களில் தேவைப்படும் தொகுப்புகளை பார்க்கிறது" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} பிழைதிருத்த கோப்புகளுக்கான தொகுப்புகளை தேட முடியாது" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "பதிவிறக்குவதற்கான தொகுப்புகள்: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "{0:.2f}Mb ஐ பதிவிறக்குகிறது, நிறுவப்பட்ட அளவு: {1:.2f}Mb. தொடரவா?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "பயனரால் பதிவிறக்கம் ரத்துசெய்யப்பட்டது" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -274,7 +271,7 @@ msgstr "" - "எச்சரிக்கை: tmp dir '{0}' இல் போதுமான காலி இடம் இல்லை ({1:.2f}Mb மீதமுள்ளது)." - " தொடரவா?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -283,38 +280,45 @@ msgstr "" - "எச்சரிக்கை: cache dir '{0}' இல் போதுமான காலி இடம் இல்லை ({1:.2f}Mb " - "மீதமுள்ளது). தொடரவா?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "பதிவிறக்க தொகுப்பு {0} தோல்வியுற்றது" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "தொகுப்புநீக்கல் தோல்வியுற்றது, பதிவிறக்கத்தை ஒதுக்குகிறது..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "{0} நீக்குகிறது" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -322,38 +326,38 @@ msgstr "" - "மிரரில் இருந்து பதிவிறக்கும் போது சிக்கல் '{0!s}' ஏற்பட்டது: '{1!s}'. " - "அடுத்ததை முயற்சிக்கிறது" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "பிழை துவக்கும் yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "பிழை: தேக்ககக் கோப்பகத்தை உருவாக்க முடியவில்லை, வெளியேறுகிறது" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "தொகுப்பதிவகம் '{0!s}' ஐ முடக்க முடியாது: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "ஒத்திசைவற்ற பதிவிறக்கத்தை முடக்க முடியாது, வெளியீட்டில் ஆர்ட்டிஃபேக்ட்டுகள் " - "இருக்கக்கூடும்!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "{0} ஐ அமைக்க முடியவில்லை: {1}, செயல்நீக்குகிறது" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "பிழை மீட்டெடுக்கும் மெட்டாதரவு: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "பிழை மீட்டெடுக்கும் கோப்புபட்டியல்கள்: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "கோப்பு '{0}' ஐ நகலெடுக் முடியாது: {1}" -@@ -402,7 +406,7 @@ msgstr "நிகழ்வுகள்" - msgid "C_onfigure" - msgstr "அமைவாக்கம் செய் (_o)" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "மூடு (_C)" - -@@ -428,7 +432,7 @@ msgstr "இரகசிய சேவை கிடைக்கவில்லை, - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "ரத்து (_C)" - -@@ -517,7 +521,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "மாற்று GUI கோப்பு" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -526,15 +530,15 @@ msgstr "" - "எழுக்கூடிய தரவைவ தேவைப்படுகிறது, ஆனால் '%s' எழுத முடியாது. '%s' க்கு " - "நகர்த்தி நகர்த்தப்பட்ட தரவில் செயல்படுத்தவா?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "ஒரு உரை கோப்பினை பார்/திருத்து" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "சேமி (_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -542,39 +546,39 @@ msgstr "" - "இந்த சிக்கலுக்கு அறிக்கையிடல் இலக்குகள் வரையறுக்கப்படவில்லை. /etc/libreport/" - "* இல் உள்ள அமைவாக்கத்தை சரிபார்க்கவும்" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(தேவை: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(தேவையில்லை, தரவு ஏற்கனவே உள்ளது: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(பார்க்க/திருத்த இங்கே கிளிக் செய்யவும்)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(பைனரி கோப்பு, %llu பைட்டுகள்)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(விளக்கம் இல்லை)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu பைட்டுகள், %u கோப்புகள்" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "செயலாக்கம் ரத்து செய்யப்பட்டது" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -583,7 +587,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -591,7 +595,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -603,77 +607,50 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "சிக்கல் அறிக்கையிடக்கூடியதல்ல என்பதால் செயலாக்கம் தடைபட்டது." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "செயலாக்கம் தோல்வியடைந்தது." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "செயலாக்கம் முடிந்தது." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "செயலாக்கம் முடிந்தது. அடுத்த செயல்படிக்குச் செல்லவும்." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "நிகழ்வு '%s'-க்கு எந்த செயலும் வரையறுக்கப்படவில்லை" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "செயலாக்கம் தடைபட்டது: எழுதக்கூடிய கோப்பகம் இல்லாமல் தொடர முடியாது." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "செயலாக்கம் நடைபெறுகிறது..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "செல்லுபடியாகாத நிகழ்வுப் பெயரின் காரணமாக, பின்தடமறிதல் தரமதிப்பிடுதலை " - "சோதிக்க முடியவில்லை" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -683,101 +660,109 @@ msgstr "" - "அனுமதி தேவைப்படுகிறது. \n" - "தொடர வேண்டுமா?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "இந்த சிக்கலை அறிக்கையிடக்கூடாது (அநேகமாக இது அறியப்பட்ட சிக்கலாக இருக்கும்). " - "%s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "திற (_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' ஒரு வழக்கமான கோப்பு இல்லை" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "இதனுள் ஒரு கோப்பை நகலெடுக்க முயற்சிக்கிறது" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' ஐ நகலெடுக்க முடியாது: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "உருப்படி '%s' ஏற்கனவே உள்ளது மற்றும் மாற்றியமைக்க முடியாதுஓ" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "சேர்த்து" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "பெயர்" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "மதிப்பு" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "சிக்கல் விவரம்" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "இந்த சிக்கலை எப்படி அறிக்கையிட வேண்டும் எனத் தேர்ந்தெடுக்கவும்" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "கூடுதல் விவரங்களை கொடுக்கவும்" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "தரவை மறுபார்வையிடு" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "அறிக்கையிட தரவை உறுதிசெய்" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "செயலாக்கம் நடைபெறுகிறது" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "செயலாக்கம் நிறைவடைந்தது" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "நிறுத்து (_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "பகுப்பாய்வுக்காக பதிவேற்று" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "முன்னால் (_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "விவரங்கள்" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "அறிக்கைக்கான அணுகலைக் கட்டுப்படுத்தவும்" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -828,28 +813,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "அறிக்கைக்கான அணுகலைக் கட்டுப்படுத்தவும்" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"கட்டுப்படுத்தப்பட்ட அணுகல் கொண்ட அறிக்கையை Fedora பங்களிப்பாளர் குழு " --"உறுப்பினர்களைத் தவிர வேறு யாரும் காண முடியாது (நீங்களும்)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "கட்டுப்படுத்தப்பட்ட அணுகல் கொண்ட அறிக்கை பற்றி மேலும் படிக்கவும்" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -860,7 +823,7 @@ msgstr "" - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -870,12 +833,12 @@ msgstr "" - "கூடுதல் கருத்துக்கள் சிக்கலை கண்டறிய பயன்படுத்தவா? சாத்தியமெனில் ஆங்கிலத்தை " - "பயன்படுத்தவும்." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - "நீங்கள் செயல்படுத்துவதற்கு முன் எவ்வாறு என்பதை நீங்கள் நிரப்ப வேண்டும்..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -883,33 +846,33 @@ msgstr "" - "துணுக்கு: உங்கள் கருத்துக்கள் தனிப்பட்டவை அல்ல. நீங்கள் சொல்வதற்கு " - "ஏற்ப பார்க்கவும்." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - "அதை எப்படி விவரிப்பது என உங்களுக்குத் தெரியாவிட்டால், நீங்கள் இதைச் " - "செய்யலாம்" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "திரைப்பிடிப்பை சேர்க்கலாம்" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "இந்த சிக்கலுக்கு காரணம் என்ன என்று தெரியாது" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "அளவு:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ஒரு கோப்பை இணை" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "நான் தரவை மறுபார்வையிட்டது மற்றும் இதை சமர்பித்தலுக்கு _ஏற்கவும்" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -920,19 +883,19 @@ msgstr "" - "பேக்ட்ரேஸ், கட்டளை வரி, சூழல் மாறிகள் பரிசோதிப்பதற்கு தேவையான " - "உருப்படிகளாகும்." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "செயலாக்கம் இன்னும் தொடங்கவில்லை" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "பதிவை காட்டு" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "பதிவுசெய்தல் முடிவடைந்தது. இப்போது இந்த சாளரத்தை நீங்களை மூடலாம்." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -941,16 +904,15 @@ msgstr "" - "நீங்கள் பல்வேறு இடங்களில் சிக்கலை அறிக்கையிட எண்ணினால், கூடுதல் தகவலை " - "சேகரித்து அல்லது சிக்கல் விளக்கத்தை கொடுத்து முன்னோக்கு என அழுத்தவும்." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "அதிகமான சொற்களோடு இருத்தல்" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "சிக்கல் கோப்பகம்" - -@@ -976,78 +938,119 @@ msgstr "சிக்கல் கோப்பகமல்ல" - msgid "Can't delete '%s': %s" - msgstr "'%s' ஐ அழிக்க முடியவில்லை: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "தேவையான உருப்படி இல்லை: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid மதிப்பு செல்லுபடியானதல்ல: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "தேவையான உருப்படி இல்லை: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "பதிவேற்றப்பட்டது: %llu of %llu kபைட்டுகள்" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s க்கு %s ஐ அனுப்புகிறது" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s க்கு %s ஐ வெற்றிகரமாக அனுப்பியது" -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "அவசியமான மதிப்பு விடுப்பட்டுள்ளது" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "தவறான utf8 எழுத்து '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "தவறான எண் '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr " தவறான பூலியன் மதிப்பு '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "துணைபுரியாத விருப்ப வகை" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1056,11 +1059,11 @@ msgstr "" - "செல்லுபடியாகாத ஒரு தரவின் காரணமாக சிக்கலை அறிக்கையிட முடியாது. '%s' கோப்பில் " - "ஒரு எண் இல்லை." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "இந்த சிக்கலை ABRT திட்டப்பணி உருவாக்குநர்களுக்கு அறிக்கையிடவும்." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1068,15 +1071,15 @@ msgstr "" - "bactrace முடிக்கப்படாமல் உள்ளது, மறுஉற்பத்திக்கு நீங்கள் சரியான படிகளை " - "செய்திருக்கிறீர்கள் என உறுதிசெய்யவும்." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "பின்தடமறிதல் உருவாக்குநர் வழுவைக் கண்டறிய உதாவமல் போகலாம்." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "அறிக்கை செயல்நீக்கப்பட்டது, மேலே காட்டப்பட்ட சிக்கல்களை பொருத்தவும்." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1085,11 +1088,26 @@ msgstr "" - "\"debuginfo-install %s\" எனும் கட்டளையைப் பயன்படுத்தி வழுநீக்க தகவலை " - "கைமுறையாக நிறுவிவிட்டு மீண்டும் முயற்சிக்கவும்." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "சரியான வழுநீக்க தகவல் விடுபட்டுள்ளது அல்லது கோர்டம்ப் சிதைந்துள்ளது." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1098,28 +1116,38 @@ msgstr "உங்கள் சிக்கல் உருவாக அநேக - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - "உங்கள் சிக்கல் உருவாக அநேகமாக பின்வருபவற்றில் ஒன்றே காரணம் போல தெரிகிறது:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - "uReport ஐ curl கொண்ட சேவையகம் '%s' க்கு பதிவேற்றுவதில் தோல்வியடைந்தது: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "'%s'என ஒரு URL இல்லை (சேவையகத்திலிருந்து 404 பிழை வந்தது)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "'%s' இல் உள்ள சேவையகம் ஒரு அகப் பிழையைச் சந்தித்தது (பிழை 500 வந்தது)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" -@@ -1127,35 +1155,35 @@ msgstr "" - "வந்தது)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s' இல் இருந்து எதிர்பாராத HTTP பதில்: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - "'%s' இல் உள்ள ureport சேவையகத்திலிருந்து கிடைத்த பதிலைப் பாகுபடுத்த " - "முடியவில்லை'" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' இலிருந்து பெற்ற பதில் தவறான வடிவத்தை கொண்டுள்ளது" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "'%s' இலிருந்து கிடைத்த பதிலில் வகை பொருந்தாமை கண்டறியப்பட்டுள்ளது" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "சிக்கலை சமர்ப்பித்தல் தோல்வியடைந்தது" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "'%s' இல் உள்ள சேவையகம் ஒரு பிழையுடன் பதிலளித்தது: '%s'" -@@ -1187,21 +1215,34 @@ msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - "ஸ்டேக்டிரேஸ் விளக்கத்தை உருவாக்க முடியவில்லை (செயலிழப்பு தொடரிழை இல்லையா?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' ஆனது சமிக்ஞை %u ஆல் கொல்லப்பட்டது)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' வெற்றிகரமாக முடிந்தது)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' ஆனது %u உடன் வெளியேறியது)\n" -@@ -1290,32 +1331,58 @@ msgid "Bugzilla account password" - msgstr "Bugzilla கணக்கு கடவுச்சொல்" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "அணுகலைக் கட்டுப்படுத்தவும்" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"உருவாக்கப்பட்ட bugzilla டிக்கட்டை குறிப்பிட்ட குழுவைச் சேர்ந்த பயனர்கள் " -+"மட்டும் காணும் வகையில் அதற்கான அணுகலைக் கட்டுப்படுத்தவும் (மேலும் " -+"விவரங்களுக்கு மேம்பட்ட அமைவுகளைப் பார்க்கவும்)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "குழுக்கள்" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"குறிப்பிட்ட குழுக்களுக்கு மட்டும் கிடைக்குமாறு அணுகலைக் கட்டுப்படுத்தவும் " -+"<a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -+"tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla சேவையகத்தின் முகவரி" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL ஐ சரிபார்" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL விசை சரிபார்த்தலுக்கு சரிபார்க்கிறது" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla தயாரிப்பு" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1323,11 +1390,11 @@ msgstr "" - "/etc/os-release இல் குறிப்பிட்டுள்ள தயாரிப்பல்லாத வேறு தயாரிப்பு உங்களுக்கு " - "வேண்டுமானால் மட்டும் இதைக் குறிப்பிடவும்" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla தயாரிப்பு பதிப்பு" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1335,8 +1402,8 @@ msgstr "" - "/etc/os-release இல் குறிப்பிட்டுள்ள தயாரிப்பு பதிப்பல்லாத வேறு தயாரிப்பு " - "பதிப்பு உங்களுக்கு வேண்டுமானால் மட்டும் இதைக் குறிப்பிடவும்" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1345,8 +1412,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP பதிலி" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1355,8 +1422,8 @@ msgstr "HTTP பதிலி" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTP க்கு பயன்படுத்த வேண்டிய பதிலி சேவையகத்தை அமைக்கும்" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1365,8 +1432,8 @@ msgstr "HTTP க்கு பயன்படுத்த வேண்டிய - msgid "HTTPS Proxy" - msgstr "HTTPS பதிலி" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1375,33 +1442,6 @@ msgstr "HTTPS பதிலி" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS க்கு பயன்படுத்த வேண்டிய பதிலி சேவையகத்தை அமைக்கும்" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "அணுகலைக் கட்டுப்படுத்தவும்" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"உருவாக்கப்பட்ட bugzilla டிக்கட்டை குறிப்பிட்ட குழுவைச் சேர்ந்த பயனர்கள் " --"மட்டும் காணும் வகையில் அதற்கான அணுகலைக் கட்டுப்படுத்தவும் (மேலும் " --"விவரங்களுக்கு மேம்பட்ட அமைவுகளைப் பார்க்கவும்)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "குழுக்கள்" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"குறிப்பிட்ட குழுக்களுக்கு மட்டும் கிடைக்குமாறு அணுகலைக் கட்டுப்படுத்தவும் " --"<a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1441,13 +1481,13 @@ msgstr "" - "குறிப்பிடப்பட்டது, env மாறி மற்றும் அமைவாக்கத்தைப் புறக்கணிக்கிறது" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "புகுபதிவு செய்யாமல் தொடர முடியாது" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "கடவுச்சொல் இல்லாமல் தொடர முடியாது" -@@ -1460,10 +1500,9 @@ msgstr "Bugzilla ஆனது %s இல் பதிகிறது" - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"செல்லுபடியாகாத கடவுச்சொல் அல்லது புகுபதிவு. உங்கள் Bugzilla புகுபதிவை உள்ளிடவும்:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1480,7 +1519,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1514,119 +1553,90 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"சிக்கலை Bugzilla விற்கு அறிக்கையிடும்.\n" --"\n" --"கருவி DIR ஐப் படிக்கும். பிறகு அது Bugzilla வில் புகுபதிவு செய்து\n" --"'Whiteboard' இல் அதே abrt_hash:HEXSTRING ஐக் கொண்டுள்ள வழுவைக் கண்டறிய " --"முயற்சிக்கும்.\n" --"\n" --"அப்படி ஒரு வழுவைக் கண்டறியாவிட்டால், பிறகு புதிய வழு உருவாக்கப்படும். DIR\n" --"இன் கூறுகள் அவற்றின் வகை மற்றும் அளவைப் பொறுத்தது வழு விளக்கத்தின் பகுதியாக\n" --"அல்லது இணைப்புகளாக வழுவில் சேமிக்கப்படும்.\n" --"\n" --"இல்லாவிட்டால், அப்படி ஒரு வழு கண்டறியப்பட்டால், அது CLOSED DUPLICATE எனக் " --"குறிக்கப்பட்டு,\n" --"நகலல்லாத வழுவைக் கண்டறியும் வரை கருவியானது நகலின் சங்கிலித் தொடரைப் " --"பின்தொடரும்.\n" --"கண்டறிந்த வழுவில் கருவியானது புதிய கருத்தைச் சேர்க்கும்.\n" --"\n" --"புதிய அல்லது மாற்றம் செய்யப்பட்ட வழுவிற்கான URL stdout க்கு அச்சிடப்பட்டு\n" --"'reported_to' கூறில் பதிவு செய்யப்படும்.\n" --"\n" --"-t விருப்பமானது Bugzilla தளத்தில் ஏற்கனவே உருவாக்கப்பட்ட வழுவிற்கு FILEகளை " --"பதிவேற்றும்.\n" --"-d DIR ஆல் குறிப்பிடப்பட்ட கோப்பகத்திலிருந்து வழு ID மீட்டெடுக்கப்படும்.\n" --"DIR இல் உள்ள சிக்கல் தரவு Bugzilla விற்கு எப்போதும் அறிக்கையிடப்படாததாக " --"இருந்தால், பதிவேற்றம் தோல்வியடையும்.\n" --"\n" --"-tID விருப்பமானது Bugzilla தளத்தில் குறிப்பிட்ட ID கொண்ட வழுவிற்கு FILEகளை " --"பதிவேற்றும்..\n" --"-d DIR புறக்கணிக்கப்படும்.\n" --"\n" --"-w விருப்பமானது bugzilla பயனரை வழுவின் CC பட்டியலில் சேர்க்கும்.\n" --"\n" --"-r விருப்பமானது URL புலத்திற்கு TRACKER_NAME என்ற முன்னொட்டைக் கொண்டமையும் " --"reporter_to element கூறிலிருந்து பெறும் url ஐ \n" --"அமைக்கும். புதிய வழுவைப் பதிவு\n" --"செய்ய வேண்டி இருக்கும்பட்சத்தில் மட்டுமே இந்த விருப்பம் பயன்படுத்தப்படும். " --"முன்னிருப்பு மதிப்பு 'ABRT Server' ஆகும்\n" --"\n" --"குறிப்பிடப்படாவிட்டால், CONFFILE மதிப்பு முன்னிருப்பாகும்" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "கட்டமைப்பு கோப்பு (அதிக முறைகள் வழங்கப்பட்டன)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "தொடக்க கருத்துக்கான வடிவமைப்புக் கோப்பு" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "நகல்களுக்கான வடிவமைப்புக் கோப்பு" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "கோப்புகளை சேர் [இந்த குறியீட்டுன் பிழைக்கு]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "ஒரு பிழையை உருவாக்கும் போது, இருநிலை கோப்புகளையும் இணைக்கவும்" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "சிக்கல் ஏற்கனவே அறிக்கையிடப்பட்டால் வலிமை அறிவிக்கிறது" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "bugzilla பயனரை [இந்த ID கொண்ட வழுவின்] CC பட்டியலில் சேர்க்கவும்" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "DUPHASH ஐ வழங்கிய BUG_ID ஐ அச்சிடவும்" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - "'reported_to' இலிருந்து பெறும் கூடுதல் URL க்கான வழு டிராக்கரின் பெயர்" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "இந்தக் குழுவுக்கு மட்டும் கிடைக்குமாறு அணுகலைக் கட்டுப்படுத்தவும்" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "வழுநீக்கு" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "bugzilla வில் இதே போன்ற சிக்கல்களைத் தேடுகிறது" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" --msgstr "அமைவாக்கம் புகுபதிவை வழங்கவில்லை. உங்கள் Bugzilla புகுபதிவை உள்ளிடவும்:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1635,7 +1645,7 @@ msgstr "" - "அமைவாக்கம் கடவுச்சொல்லை வழங்கவில்லை. '%s' க்கான உங்கள் கடவுச்சொல்லை " - "உள்ளிடவும்:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1643,7 +1653,7 @@ msgstr "" - "இந்த சிக்கல் இன்னும் Bugzilla விற்கு அறிக்கையிடப்படவில்லை என்பதால் Bugzilla " - "ID ஐப் பெற முடியவில்லை." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1652,75 +1662,97 @@ msgstr "" - "இந்த சிக்கல் அமைவாக்கம் செய்யப்பட்ட Bugzilla '%s' இலிருந்து வேறுபட்டதான " - "Bugzilla '%s' க்கு அறிக்கையிடப்பட்டுள்ளது." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Bugzilla '%s' க்கு சரியாக வடிவமைக்கப்படாத url." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Bugzilla ID '%s' ஐப் பயன்படுத்துகிறது" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "வெளியேறுகிறது" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "சிக்கல் தரவிலிருந்து Bugzilla தயாரிப்பை நிர்ணயிக்க முடியவில்லை." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "பிரதிகளுக்காக சரிபார்க்கிறது" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "ஒரு புதிய பிழையை உருவாக்குகிறது" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "புதிய வழுவை உருவாக்குவதில் தோல்வியடைந்தது." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "வழு %i க்கு வெளிப்புற URL ஐச் சேர்க்கிறது" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "பிழை %i இணைப்புகளை சேர்க்கிறது" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "பிழை ஏற்கனவே அறிக்கையிடப்பட்டது: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s ஐ CC பட்டியலில் சேர்க்கிறது" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "பிழை %d-க்கு புதிய கருத்தை சேர்க்கிறது" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "நல்ல பேக்ட்ரேஸை இணைக்கிறது" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "பிழை வரலாறில் அதே கருத்து காணப்பட்டது, ஒரு புதிய ஒன்றை சேர்க்கவில்லை" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "நிலை: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1755,7 +1787,7 @@ msgstr "" - "Parameter can be overridden via $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "கட்டமைப்பு கோப்பு" - -@@ -1787,12 +1819,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ஒரு மின்னஞ்சலை அனுப்புகிறது..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "இதற்கு மின்னஞ்சல் அனுப்பப்பட்டது: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1806,11 +1838,11 @@ msgstr "" - "\n" - "If not specified, CONFFILE defaults to " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "கட்டமை கோப்பு " - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "அறிவிக்க மட்டும் செய்யவும் (அறிக்கையை அனுப்பியதாகக் குறிக்க வேண்டாம்)" - -@@ -1846,34 +1878,34 @@ msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - "'%s' க்காக எழுதுவதற்கு திறக்க முடியாது. மற்றொரு கோப்பை தேர்ந்தெடுக்கவும்:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "%sக்கு அறிக்கை சேர்க்கப்பட்டது" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "அறிக்கை %sஇல் சேமிக்கப்பட்டன" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "சேவையகம் ஒரு பிழையுடன் பதிலளித்தது: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "ஒரு RHTSupport டிக்கெட் உருவாக்க வேண்டுமா?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1882,77 +1914,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "கோப்புகளை பதிவேற்றவும் [இந்த குறியீட்டு வழக்குடன்]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "அமைவாக்கம் புகுபதிவை வழங்கவில்லை. உங்கள் RHTS புகுபதிவை உள்ளிடவும்:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' ஐ வழக்கு '%s' க்கு சேர்க்கிறது" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "இங்கு தற்காலிக கோப்பகத்தை உருவாக்க முடியவில்லை" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "குறுக்கப்பட்ட தரவு" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "இங்கு தற்காலிக கோப்பகத்தை உருவாக்க முடியவில்லை" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "இங்கு தற்காலிக கோப்பை உருவாக்க முடியவில்லை" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "குறிப்புகள் உள்ளதா எனப் பார்க்கிறது" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "புதிய நேர்வை உருவாக்குகிறது" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "சிக்கல் தரவிலிருந்து RH ஆதரவு தயாரிப்பை நிர்ணயிக்க முடியவில்லை." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "நேர்வு '%s' க்கு கருத்தைச் சேர்க்கிறது" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "நேர்வு '%s' க்கு சிக்கல் தரவை இணைக்கிறது" -@@ -1965,45 +2001,49 @@ msgstr "ஆவணமாக்கம் தொடர்புடையதாக - msgid "Updates which possibly help: " - msgstr "உதவிபுரியும் புதுப்பித்தல்கள்:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "URL இல்லாமல் தொடர முடியாது" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "ஆர்ச்வ் உருவாக்கப்பட்டது: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"சிக்கல் கோப்பகம் DIR இன் அமுக்கப்பட்ட tarball ஐ URL க்கு பதிவேற்றும்.\n" --"URL குறிப்பிடப்படாவிட்டால், tarball இங்கு உருவாக்கப்படும்" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "இதற்கு பதிவேற்ற தள URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -2020,7 +2060,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2063,48 +2103,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2112,47 +2152,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2188,39 +2228,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2384,6 +2427,22 @@ msgstr "FTP பதிலி" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP க்கு பயன்படுத்த வேண்டிய பதிலி சேவையகத்தை அமைக்கும்" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2452,7 +2511,7 @@ msgstr "பிழை %i CLOSED, ஆனால் இது RESOLUTION-ஐ கொ - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "பிழை %i DUPLICATE-ஆக CLOSED, ஆனால் இது DUP_ID-ஐ கொண்டிருக்கவில்லை" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2462,17 +2521,17 @@ msgstr "" - "மேலும் தகவலுக்கு https://github.com/abrt/abrt/wiki/FAQ#creating-private-" - "bugzilla-tickets ஐப் பார்க்கவும்" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "புதிய பிழை குறியீடு: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "பிழை %d-ஐ பக்ஸில்லா காணவில்லை" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Bug.search(quicksearch) திருப்பி வழங்கல் மதிப்பில் உறுப்பினர் 'bugs' இல்லை" -@@ -2666,41 +2725,41 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "சேவையக URL ஐக் குறிப்பிடவும்" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "ureport சேவையகத்திற்கு பாதுகாப்பற்ற இணைப்பை அனுமதிக்கவும்" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "கிளையன்ட் அங்கீகாரத்தைப் பயன்படுத்தவும்" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "இணைக்க வேண்டிய uReport இன் bthash (-A உடன் முரண்படுகிறது)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - "reported_to இலிருந்து கிடைக்கும் ஒரு bthash க்கு இணைக்கவும் (-a உடன் " - "முரண்படுகிறது)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "தொடர்பு மின்னஞ்சல் முகவரி (-a|-A தேவை, -E உடன் முரண்படுகிறது)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2708,29 +2767,53 @@ msgstr "" - "சூழல் அல்லது அமைவாக்கக் கோப்பிலிருந்து கிடைக்கும் தொடர்பு மின்னஞ்சல் முகவரி " - "(-a|-A தேவை, -e உடன் முரண்படுகிறது)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ வழுவை இணைக்கவும் (-a|-A தேவை, -B உடன் முரண்படுகிறது)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "reported_to இலிருந்து கிடைக்கும் கடைசி RHBZ ஐ இணைக்கவும் (-a|-A தேவை, -b " - "உடன் முரண்படுகிறது)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2739,33 +2822,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "இந்த சிக்கலுக்கு uReport எதுவும் அமைக்கப்படவில்லை." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "இந்த சிக்கல் Bugzilla விற்கு அறிக்கையிடப்படவில்லை." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "bugzilla URL '%s' இல் வழு ID ஐக் கண்டுபிடிக்க முடியவில்லை" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "bugzilla URL '%s' இல் இருந்து வழு ID ஐ பாகுபடுத்த முடியவில்லை" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2773,19 +2866,19 @@ msgstr "" - "சூழல் மாறி 'uReport_ContactEmail' மற்றும் அமைவாக்க விருப்பம் 'ContactEmail' " - "ஆகிய இரண்டில் எதுவும் அமைக்கப்படவில்லை" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "நீங்கள் இணைக்க வேண்டிய uReport இன் bthash ஐக் குறிப்பிட வேண்டும்." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "uReport காலியாக உள்ளது, அதைப் பதிவேற்றவில்லை" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "இந்த சிக்கல் ஏற்கனவே அறிக்கையிடப்பட்டது." - -diff --git a/po/te.po b/po/te.po -index 9b97a8f..795bc5a 100644 ---- a/po/te.po -+++ b/po/te.po -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/te/)\n" - "Language: te\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -182,46 +182,43 @@ msgstr "నడుపుటకు ఒక ఘటనను ఎంపికచేయ - msgid "Select a workflow to run: " - msgstr "నడుపుటకు వర్కు‌ఫ్లో ఎంపికచేయండి:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "{0} నుండి cpio వెలికితీయుచున్నది" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "'{0}' కు వ్రాయలేదు: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "ప్యాకేజీ '{0}' వెలికితీయలేదు" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "{1} నుండి చేయబడిన {0} నుండి ఫైళ్ళను క్యాచింగ్ చేస్తున్నది" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "'{0}' నుండి ఫైళ్ళను వెలికితీయలేదు" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "'{0}' తీసివేయలేదు: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "డౌనులోడు చేస్తున్నది (మొత్తం {1} లో {0}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -229,40 +226,40 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "రిపోజిటరీలనందు అవసరమైన ప్యాకేజీల కొరకు చూస్తోంది" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "{0} డీబగ్‌యిన్ఫో ఫైళ్ళ కొరకు ప్యాకేజీలను కనుగొనలేక పోయింది" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "డౌన్‌లోడ్ చేయుటకు ప్యాకేజీలు: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "{0:.2f}Mb డౌన్‌లోడ్ చేస్తున్నది, సంస్థాపిత పరిమాణం: {1:.2f}Mb. కొనసాగించాలా?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "వాడుకరిచే డౌన్‌లోడ్ రద్దుచేయబడెను" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -270,7 +267,7 @@ msgstr "" - "హెచ్చరిక: tmp డైరెక్టరీ '{0}' నందు కావలసినంత ఖాళీ జాగా లేదు ({1:.2f}Mb " - "మిగిలివుంది). కొనసాగించాలా?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -279,38 +276,45 @@ msgstr "" - "హెచ్చరిక: క్యాచీ డైరెక్టరీ '{0}' నందు కావలసినంత ఖాళీ జాగా లేదు ({1:.2f}Mb " - "మిగిలివుంది). కొనసాగించాలా?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "ప్యాకేజీ {0} డౌన్‌లోడ్ చేయుటకు విఫలమైంది" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "అన్‌పాకింగ్ విఫలమైంది, డౌన్‌లోడ్ విరమింపచేయడమైంది..." - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "తీసివేయుచున్నది {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -318,37 +322,37 @@ msgstr "" - "మిర్రర్: '{1!s}' నుండి దిగుమతి చేయునప్పుడు '{0!s}' సమస్య ఎదురైంది. తరువాతది " - "ప్రయత్నిస్తోంది" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "yum (YumBase.doConfigSetup) సిద్దపరచుటలో దోషం: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "దోషం: క్యాచీడైరెక్టరీ చేయలేదు, నిష్క్రమిస్తోంది" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "రిపోజిటరీ '{0!s}' అచేతనం చేయలేదు: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "async దింపుకోలు అచేతనం చేయలేదు, అవుట్పుట్ ఆర్టిఫాక్ట్స్ కలిగివుండవచ్చు!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "అమర్చలేదు {0}: {1}, అచేతనపరచుచున్నది" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "మెటాడాటా వెలికితీయుటలో దోషం: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "ఫైల్‌జాబితాలను వెలికితీయుటలో దోషం: '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "ఫైలు '{0}' నకలు తీయలేదు: {1}" -@@ -397,7 +401,7 @@ msgstr "ఘటనలు" - msgid "C_onfigure" - msgstr "ఆకృతీకరించు (_o)" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "మూసివేయి (_C)" - -@@ -423,7 +427,7 @@ msgstr "రహస్య సేవ అందుబాటులోలేదు, - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "రద్దుచేయి (_C)" - -@@ -510,7 +514,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "ప్రత్యామ్నాయ GUI ఫైల్" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -519,15 +523,15 @@ msgstr "" - "వ్రాయుటకు వీలగు సంచయం అవసరం, అయితే '%s' వ్రాయుటకు వీలగునది కాదు, దానిని '%s' " - "కు కదల్చి మరియు కదల్చిన డాటాపై ఆపరేట్ చేయవలెనా?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "పాఠపు ఫైలును దర్శించు/సరికూర్చు" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "దాయి (_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -535,39 +539,39 @@ msgstr "" - "ఈ సమస్య కొరకు ఏ నివేదన లక్ష్యాలు నిర్వచింపలేదు. /etc/libreport/* నందు " - "ఆకృతీకరణను పరిశీలించు" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(కావలసింది: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(అవసరం లేదు, దత్తాంశం ఇప్పటికే ఉంది: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(దర్శించు/సరిచేయి కు యిచట నొక్కు)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(బైనరీ ఫైలు, %llu బెట్లు)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(వివరణ లేదు)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu బెట్లు, %u ఫైళ్ళు" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "ప్రోసెసింగ్ రద్దైనది" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -576,7 +580,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -584,7 +588,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -596,75 +600,48 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "సమస్య నివేదించగలది కాని కారణంగా ప్రోసెసింగ్ ఆటంకపరచబడింది." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "ప్రోసెసింగ్ విఫలమైంది." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "ప్రోసెసింగ్ పూర్తైనది." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "ప్రోసెసింగ్ పూర్తైనది, దయచేసి తరువాతి అంచెకు వెళ్ళు." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "ఘటన '%s' కొరకు యే క్రమణం నిర్వచించబడలేదు" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "ప్రోసెసింగ్ ఆటంకపరచబడింది: వ్రాయదగ డైరెక్టరీ లేకుండా కొనసాగించలేదు." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "ప్రోసెసింగ్..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "చెల్లని ఘటన పేరు కారణంగా బ్యాక్‌ట్రేస్ రేటింగ్ పరిశీలించలేదు" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -673,99 +650,107 @@ msgstr "" - "సున్నితమైన దత్తాంశం పంపుటకు ఘటన '%s' కు అనుమతి కావాలి.\n" - "మీరు కొనసాగించుదామని అనుకొంటున్నారా?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "ఈ సమస్యను నివేదించ కూడదు (ఇది తెలిసిన సమస్యే). %s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "తెరువుము (_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' అనునది సాధారణ ఫైలు కాదు" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "మీరు వొక ఫైలును దానిపైనే నకలుతీయుటకు ప్రయత్నిస్తున్నారు" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "'%s' ను నకలుతీయలేక పోయింది: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "అంశం '%s' యిప్పటికే వుంది మరియు దానిని సవరించలేము" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "కలుపుకొని" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "పేరు" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "విలువ" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "సమస్య యొక్క వివరణ" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "ఈ సమస్యను ఎలా నివేదించాలో ఎంపికచేయి" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "అదనపు సమాచారాన్ని అందించుము" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "డాటాను పునఃపరిశీలించు" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "నివేదించుటకు దత్తాంశమును నిర్థారించుము" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "ప్రోసెసింగ్" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "ప్రోసెసింగ్ పూర్తైనది" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "ఆపివేయి(_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "విశ్లేషణ కు ఎగుమతిచేయి" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "ముందుకు (_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "వివరములు" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "నివేదిక అందుబాటును నిర్బందించు" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -816,26 +801,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "నివేదిక అందుబాటును నిర్బందించు" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "నిర్భందిత ఏక్సెస్‌తో ఉన్న నివేదికల గురించి మరింత చదవండి" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -846,7 +811,7 @@ msgstr "" - "పునఃపరిశీలించుటకు, సమస్య యెక్కడ నివేదించాలి యెంచుకొనుటకు. కొనసాగుటకు " - "'ముందుకు' నొక్కండి." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -856,11 +821,11 @@ msgstr "" - "సమస్యను విశ్లేషించుటలో వుపయోగకరంగా వుండు యేదైనా అదనపు వ్యాఖ్యానాలు వున్నాయా?." - " దయచేసి వీలైతే ఆంగ్లము వుపయోగించండి." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "మీరు కొనసాగుటకు ముందుగా యెలా అనునది మీరు నింపవలసి వుంటుంది..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -868,33 +833,33 @@ msgstr "" - "మీ వ్యాఖ్యానాలు వ్యక్తిగతమైనవి కావు. అవి బహిర్గతంగా కనిపించు సమస్యా " - "నివేదికలయందు చేర్చబడ గలవు." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "దానిని ఎలా వివరించాలో మీకు తెలియకపోతే, మీరు" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "స్క్రీన్‌కాస్ట్ జతచేయవచ్చు" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "ఈ సమస్యకు యేది కారణమైనో నాకు తెలియదు" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "పరిమాణం:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "ఒక ఫైలు అనుభందించు" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "" - "నేను డాటాను పునఃపరిశీలించాను మరియు దానిని అప్పజెప్పుటకు వొప్పుకుంటున్నాను " - "(_a)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -904,19 +869,19 @@ msgstr "" - "చూసుకొనండి (వాడుకరిపేర్లు మరియు సంకేతపదములు వంటివి). బ్యాక్‌ట్రేస్, కమాండ్ " - "లైన్, యెన్విరాన్మెంట్ వేరియబుల్స్ అనునవి పరీక్షణలో ముఖ్యమైనవి." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "ప్రోసెసింగ్ ఇంకా ప్రారంభంకాలేదు" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "లాగ్ చూపు" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "నివేదికరణ ముగిసినది. మీరు యీ విండోను మూసివేయవచ్చును." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -926,16 +891,15 @@ msgstr "" - "సేకరించు, లేదా మంచి ప్రోబ్లమ్ వివరణను అందించు మరియు నివేదీకరణ ప్రోసెస్‌ను " - "పునరావృతం చేయి, 'ముందుకు' వత్తుము." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "వెర్బోస్ నందు ఉండు" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "సమస్య డైరెక్టరీ" - -@@ -961,89 +925,130 @@ msgstr "సమస్య డైరెక్టరీ కాదు" - msgid "Can't delete '%s': %s" - msgstr "'%s' తొలగించలేదు: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "కావలసిన అంశం దొరకలేదు: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "uid విలువ చెల్లునది కాదు: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "కావలసిన అంశం దొరకలేదు: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "అప్‌లోడైంది: %llu బైట్లు మొత్తం %llu బైట్లలో" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s ను %s కు పంపుచున్నది" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s ను %s కు విజయవంతంగా పంపెను" -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "తప్పనిసరి విలువ తప్పిపోయింది" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "చెల్లని utf8 అక్షరం '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "చెల్లని సంఖ్య '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "చెల్లని boolean విలువ '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "తోడ్పాటులేని ఐచ్చికం రకం" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "ఈ సమస్యను దయచేసి ABRT ప్రోజెక్ట్ అభివృద్దికారులకు నివేదించండి." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1051,16 +1056,16 @@ msgstr "" - "బాక్‌ట్రేస్ అసంపూర్తిగా వుంది, దానిని తిరిగివుత్పన్నం చేయుటకు దయచేసి మీరు " - "స్టెప్సును యిచ్చునట్లు చూచుకోండి." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "బగ్‌ను డయాగ్నోస్ చేయుటకు బ్యాక్‌ట్రేస్ అనునది అబివృద్దికారునకు సహాయపడలేదు." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "బ్యాక్‌ట్రేస్ నిరుపయోగమైంది కావున నివేదీకరణ అచేతనపరచడమైంది." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1069,11 +1074,26 @@ msgstr "" - "డీబగ్‌సమాచారం మానవీయంగా సంస్థాపించుటకు ఈ ఆదేశాన్ని ఉపయోగించి: \"debuginfo-" - "install %s\" మరలా ప్రయత్నించండి." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "బహుశా సరైన డీబగ్‌సమాచారం దొరకట్లేదు లేదా కోర్‌డంప్ పాడైంది." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1082,58 +1102,68 @@ msgstr "మీ సమస్యకు %s కారణం అయినట్ల - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "మీ సమస్యకు కింది వాటిలో ఒకటి కారణంగా వుంది:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "uReport ను సేవిక '%s' కు curl తో ఎక్కించుటకు విఫలమైంది: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' మనుగడలో లేదు (సేవిక నుండి 404 దోషం వచ్చింది)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "'%s' వద్దని సేవికకు అంతర్గత దోషం ఎదురైంది (500 దోషం వచ్చింది)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s' నుండి అనుకోని HTTP స్పందన వచ్చింది: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "'%s' నుండి స్పందన చెల్లని ఫార్మాట్ కలిగివుంది" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "'%s' స్పందననందు టైప్ అసమానత గుర్తించబడెను" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "సమస్యను అప్పజెప్పుటకు విఫలమైంది" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "'%s' వద్దని సేవిక ఒక దోషంతో స్పందించెను: '%s'" -@@ -1164,21 +1194,34 @@ msgstr "బ్యాక్‌ట్రేస్ పార్స్ చేయల - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "స్టాక్‌ట్రేస్ వివరణ జనియింపచేయలేదు (ఏ క్రాష్ త్రెడ్ లేదా?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' అనునది సంకేతం %u చేత చంపబడింది)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' విజయవంతంగా పూర్తైనది)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' అనునది %u తో నిష్క్రమించింది)\n" -@@ -1263,32 +1306,57 @@ msgid "Bugzilla account password" - msgstr "బగ్‌జిల్లా ఖాతా సంకేతపదం" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "ఏక్సెస్ నిర్భందించు" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"సృష్టించినటువంటి బగ్‌జిల్లా టికెట్‌ను చూడుటకు ఫలానా సమూహాల నుండి వాడుకరులను " -+"మాత్రమే అనుమతించుచూ ఏక్సెస్‌ను నిర్భందించుము (మరిన్ని వివరాల కొరకు అధునాతన " -+"అమర్పులు చూడండి)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "సమూహాలు" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"ఏక్సెస్‌ను ఫలానా సమూహాలకు నిర్భందించుము <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "బగ్‌జిల్లా URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "బగ్‌జిల్లా సర్వర్ చిరునామా" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL నిర్థారించు" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL కీ నిర్థారణ పరిశీలించు" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "బగ్‌జిల్లా ఉత్పత్తి" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1296,11 +1364,11 @@ msgstr "" - "/etc/os-release నందు తెలిపినది కాక వేరే ఉత్పత్తి కావలెనంటే మాత్రమే దీనిని " - "తెలుపండి" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "బగ్‌జిల్లా ఉత్పత్తి వర్షన్" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1308,8 +1376,8 @@ msgstr "" - "/etc/os-release నందు తెలిపినది కాక వేరే ఉత్పత్తి వర్షన్ కావలెనంటే మాత్రమే " - "దీనిని తెలుపండి" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1318,8 +1386,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP ప్రోక్సీ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1328,8 +1396,8 @@ msgstr "HTTP ప్రోక్సీ" - msgid "Sets the proxy server to use for HTTP" - msgstr "HTTP కొరకు ఉపయోగించుటకు ప్రోక్సీ సేవిక అమర్చును" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1338,8 +1406,8 @@ msgstr "HTTP కొరకు ఉపయోగించుటకు ప్రో - msgid "HTTPS Proxy" - msgstr "HTTPS ప్రోక్సీ" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1348,32 +1416,6 @@ msgstr "HTTPS ప్రోక్సీ" - msgid "Sets the proxy server to use for HTTPS" - msgstr "HTTPS కొరకు ఉపయోగించుటకు ప్రోక్సీ సేవిక అమర్చును" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "ఏక్సెస్ నిర్భందించు" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"సృష్టించినటువంటి బగ్‌జిల్లా టికెట్‌ను చూడుటకు ఫలానా సమూహాల నుండి వాడుకరులను " --"మాత్రమే అనుమతించుచూ ఏక్సెస్‌ను నిర్భందించుము (మరిన్ని వివరాల కొరకు అధునాతన " --"అమర్పులు చూడండి)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "సమూహాలు" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"ఏక్సెస్‌ను ఫలానా సమూహాలకు నిర్భందించుము <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1415,13 +1457,13 @@ msgstr "" - "తెలుపబడెను, env వేరియబుల్ మరియు ఆకృతీకరణను విస్మరిస్తోంది" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "లాగిన్ లేకుండా కొనసాగించలేదు" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "సంకేతపదం లేకుండా కొనసాగించలేదు" -@@ -1434,10 +1476,9 @@ msgstr "%s వద్ద బగ్‌జిల్లాకు లాగిన్ - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"చెల్లని సంకేతపదం లేదా లాగిన్. దయచేసి మీ బగ్‌జిల్లా లాగిన్ ప్రవేశపెట్టండి:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "చెల్లని సంకేతపదం లేదా లాగిన్. '%s' కొరకు సంకేతపదం ప్రవేశపెట్టండి:" -@@ -1452,7 +1493,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1486,120 +1527,89 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"or:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"బగ్‌జిల్లా కు సమస్యను నివేదించును.\n" --"\n" --"సాధనం DIR ను చదువును. అప్పుడు ఆది బగ్‌జిల్లాకు ప్రవేశించి 'Whiteboard' నందలి " --"అదే abrt_hash:HEXSTRING తో\n" --"బగ్ కనుగొనుటకు ప్రయత్నించును.\n" --"\n" --"ఒకవేళ అటువంటి బగ్ కనబడకపోతే, అప్పుడు కొత్త బగ్ సృష్టించబడును. DIR యొక్క " --"మూలకాలు\n" --"బగ్ నందు బగ్ వివరణలో భాగంగా లేదా అనుబందాలవలె నిల్వ ఉంచబడును,\n" --"వారి రకము మరియు పరిమాణంపై ఆధారపడి.\n" --"\n" --"లేకపోతే, అటువంటి బగ్ కనబడి మరియు నకిలీదిగా మూయబడింది అని గుర్తుంచబడితే,\n" --"సాధనం నకిలీల సృంఖలాన్ని అనుసరించి నకిలీ-కాని బగ్‌ను కనుగొనును.\n" --"కనుగొనిన బగ్‌కు సాధనం కొత్త వ్యాఖ్యను జతచేయును.\n" --"\n" --"కొత్తది లేదా సవరించిన బగ్‌ URL అనునది stdout కు ముద్రించును మరియు " --"'reported_to' మూలకం నందు\n" --"రికార్డుచేయబడును.\n" --"\n" --"ఐచ్చికం -t అనునది ఫైళ్ళను బగ్‌జిల్లా సైటు పైన ఇప్పటికే సృష్టించిన బగ్‌కు " --"ఎక్కించును.\n" --"-d DIR చేత తెలిపిన డైరెక్టరీ నుండి బగ్ ఐడి రాబట్టెను.\n" --"DIR నందలి సమస్యాత్మక దత్తాంశం ఎప్పుడూ బగ్‌జిల్లాకు నివేదించకపోతే, ఎక్కింపు " --"విఫలం అగును.\n" --"\n" --"బగ్‌జిల్లా సైటు పైన తెలిపిన ఐడితో ఐచ్చికం -tID అనునది ఫైళ్ళను బగ్‌కు " --"ఎక్కించును.\n" --"-d DIR విస్మరించబడెను.\n" --"\n" --"ఐచ్చికం -w అనునది బగ్‌జిల్లా వాడుకరిని బగ్ యొక్క CC జాబితాకు జతచేయును.\n" --"\n" --"ఐచ్చికం -r అనునది ఆఖరి url ను reporter_to మూలకం నుండి అమర్చును అది " --"TRACKER_NAMEతో \n" --"URL క్షేత్రానికి ప్రిఫిక్స్ అయివుండును. కొత్త బగ్ నింపవలసినప్పుడు మాత్రమే ఈ " --"ఐచ్చికం వర్తించబడును.\n" --"అప్రమేయ విలువ 'ABRT Server'\n" --"\n" --"ఒకవేళ తెలుపకపోతే, CONFFILE అనేది దీనికి అప్రమేయం " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "ఆకృతీకరణ ఫైలు (చాలా సార్లు యివ్వబడెను)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "ప్రాథమిక వ్యాఖ్య కొరకు ఫైలును ఫార్మాట్ చేస్తోంది" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "నకిలీల కొరకు ఫైలును ఫార్మాట్ చేస్తోంది" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "ఫైళ్ళను అనుబందించు [ఈ ఐడితో బగ్‌నకు]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "బగ్ సృష్టించునప్పుడు, బైనరీ ఫైళ్ళను కూడా అనుభందించుము" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "ఈ సమస్య యిప్పటికే నివేదించబడినప్పటికీ నివేదించుటకు వత్తిడిచేయి" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "బగ్‌జిల్లా వాడుకరిని [ఈ ID తో ఉన్న బగ్ యొక్క] CC జాబితాకు జతచేయి" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "DUPHASH ఇచ్చిన BUG_ID ను ముద్రించుము" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "'reported_to' నుండి అదనపు URL కొరకు బగ్ ట్రాకర్ యొక్క పేరు" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "ఏక్సెస్‌ను ఈ సమూహంకు మాత్రమే నిర్భందించుము" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "డీబగ్" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "బగ్‌జిల్లా నందు ఇవేమాదిరి సమస్యల కొరకు చూస్కోంది" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." - msgstr "" --"లాగిన్ అనునది ఆకృతీకరణ చేత అందించబడుటలేదు. దయచేసి మీ బగ్‌జిల్లా లాగిన్ " --"ప్రవేశపెట్టండి:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1608,14 +1618,14 @@ msgstr "" - "సంకేతపదం అనునది ఆకృతీకరణ చేత అందించబడలేదు. '%s' కొరకు సంకేతపదం " - "ప్రవేశపెట్టండి:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - "బగ్‌జిల్లా ఐడి ను పొందలేదు ఎంచేతంటే ఈ సమస్య బగ్‌జిల్లాకు నివేదించబడలేదు." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1624,76 +1634,98 @@ msgstr "" - "ఈ సమస్య బగ్‌జిల్లా '%s' కు నివేదించబడెను అది ఆకృతీకరించిన బగ్‌జిల్లా '%s' " - "నుండి విభేదించును." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "బగ్‌జిల్లా '%s' కు సరికాని url." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "బగ్‌జిల్లా ఐడి '%s' ఉపయోగిస్తోంది" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "లాగింగ్ అవుట్" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "సమస్య దత్తాంశము నుండి బగ్‌జిల్లా ఉత్పత్తి నిర్ణయించలేదు." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "నకిలీల కొరకు పరిశీలించుచున్నది" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "కొత్త బగ్ సృష్టించుచున్నది" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "కొత్త బగ్ సృష్టించుటకు విఫలమైంది." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "బగ్ %i కు బాహ్య URL జతచేస్తోంది" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "అనుబంధాలను బగ్ %i కు జతచేస్తున్నది" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "బగ్ యిప్పటికే నివేదించబడెను: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "%s ను CC జాబితాకు జతచేస్తోంది" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "బగ్ %d నకు కొత్త వ్యాఖ్యానము జతచేయుచున్నది" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "ఉత్తమమైన బ్యాక్‌ట్రేస్ అనుబందించుచున్నది" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - "బగ్ చరిత్రనందు యిటువంటి వ్యాఖ్యానమే కనుగొనబడింది, కొత్త దానిని జతచేయుటలేదు" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "స్థితి: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1728,7 +1760,7 @@ msgstr "" - "$KerneloopsReporter_SubmitURL ద్వారా పారామితి వోవర్‌రైడ్ చేయవచ్చు." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "ఆకృతీకరణ పైలు" - -@@ -1760,12 +1792,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "ఈమెయిల్ పంపుచున్నది..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "ఈమెయిల్ పంపబడెను: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1779,11 +1811,11 @@ msgstr "" - "\n" - "తెలుపకపోతే, CONFFILE దీనికి అప్రమేయమగును" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "కాన్ఫిగ్ ఫైల్" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "కేవలం తెలుపు (నివేదికను పంపినట్లు గుర్తుంచవద్దు)" - -@@ -1818,34 +1850,34 @@ msgstr "వాడుకరిచే రద్దుచేయబడెను." - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "'%s'ను వ్రాయుట కొరకు తెరువలేదు. దయచేసి వేరొక ఫైలును యెంపికచేయి:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "నివేదిక %s నకు చేర్చబడినది" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "నివేదిక %sనకు నిల్వవుంచబడింది" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "సేవిక ఒక దోషంతో స్పందించెను: '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "మీరు యింకా RHT తోడ్పాటు టికెట్‌ను సృష్టించాలని అనుకొనుచున్నారా?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1854,79 +1886,83 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "ఫైళ్ళను అప్‌లోడ్ చేయును [కేస్‌నకు యీ ఐడితో]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "లాగిన్ అనునది ఆకృతీకరణ చేత అందించబడుటలేదు. దయచేసి మీ RHTS లాగిన్ " - "ప్రవేశపెట్టండి:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' ను కేస్ '%s' కు అనుబందించుచున్నది." - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "దీనినందు తాత్కాలిక సంచయం సృష్టించలేదు" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "కంప్రెస్సింగ్ డాటా" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "దీనినందు తాత్కాలిక సంచయం సృష్టించలేదు" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "దీనినందు తాత్కాలిక ఫైలును సృష్టించలేదు" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "హింట్స్ కొరకు పరిశీలిస్తోంది" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "కొత్త కేస్ సృష్టిస్తోంది" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "సమస్య దత్తాంశము నుండి RH తోడ్పాటు ఉత్పత్తి నిర్ణయించలేదు." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "కేస్ '%s' కు వ్యాఖ్య జతచేస్తోంది" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "కేస్ '%s' కు సమస్య దత్తాంశం అనుబందిస్తోంది" -@@ -1939,45 +1975,49 @@ msgstr "సారూప్యంగా వుండగల పత్రకీక - msgid "Updates which possibly help: " - msgstr "బహుశా సహాయకంగా వుండగల నవీకరణలు: " - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "URL లేకుండా కొనసాగించలేదు" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "ఆర్కైవ్ సృష్టించబడెను: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"సమస్యాత్మక సంచయం DIR యొక్క కుదించిన టార్బాల్‌ను URL కు ఎక్కించును.\n" --"ఒకవేళ URL తెలుపకపోతే, టార్బాల్‌ను దీనినందు సృష్టించును " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "అప్‌లోడ్ చేయుటకు బేస్ URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1994,7 +2034,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2037,48 +2077,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2086,47 +2126,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2162,39 +2202,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2360,6 +2403,22 @@ msgstr "FTP ప్రోక్సీ" - msgid "Sets the proxy server to use for FTP" - msgstr "FTP కొరకు ఉపయోగించుటకు ప్రోక్సీ సేవిక అమర్చును" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2426,7 +2485,7 @@ msgstr "బగ్ %i మూయబడింది, అయితే యెటు - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "బగ్ %i మూయబడింది నకీలీది అని చెప్పి, అయితే DUP_ID లేదు" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2436,17 +2495,17 @@ msgstr "" - "దయచేసి మరింత సమాచారం కొరకు https://github.com/abrt/abrt/wiki/FAQ#creating-" - "private-bugzilla-tickets చూడండి" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "కొత్త బగ్ ఐడి: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "బగ్ %d యొక్క పేరెంట్‌ను బగ్‌జిల్లా కనుగొనలేకపోయింది" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) తిప్పిఇచ్చిన విలువ మెంబర్ 'bugs' కలిగిలేదు" - -@@ -2639,39 +2698,39 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "సేవిక URL తెలుపుము" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "ureport సేవికకు సురక్షితం కాని అనుసంధానం అనుమతించు" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "అనుబందించుటకు uReport యొక్క bthash (-A తో విభేదించును)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "reported_to నుండి bthash కు అనుబందించు (-a తో విభేదించును)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "పరిచయం ఈ-మెయిల్ చిరునామా (-a|-A కావాలి, -E తో విభేదించును)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2679,29 +2738,53 @@ msgstr "" - "ఎన్విరాన్మెంట్ నుండి పరిచయ ఈ-మెయిల్ చిరునామా లేదా ఆకృతీకరణ ఫైలు (-a|-A " - "కావాలి, -e తో విభేదించును)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "RHBZ బగ్ అనుబందించు (-a|-A కావాలి, -B తో విభేదించును)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "ఆఖరి RHBZ బగ్‌ను reported_to నుండి అనుబందించుము (-a|-A కావాలి, -b తో " - "విభేదించును)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2710,33 +2793,43 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "ఈ సమస్య అనునది uReport ను అనుబందించి కలిగిలేదు." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "ఈ సమస్య బగ్‌జిల్లాకు నివేదించబడిలేదు." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "బగ్‌జిల్లా URL '%s' నందు బగ్ ఐడి కనుగొనలేక పోయింది" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "బగ్‌జిల్లా URL '%s' నుండి బగ్ ఐడి పార్స్ చేయలేక పోయింది" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2744,19 +2837,19 @@ msgstr "" - "ఎన్విరాన్మెంట్ వేరియబుల్ 'uReport_ContactEmail' గానీ ఆకృతీకరణ ఐచ్చికం " - "'ContactEmail' గానీ అమర్చిలేవు" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "మీరు uReport యొక్క bthash ను అనుబందించుటకు తెలుపవలెను." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "ఖాళీ uReport ఎక్కించుటలేదు" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "ఈ సమస్య ఇప్పటికే నివేదించబడింది." - -diff --git a/po/tr.po b/po/tr.po -index 5b6ad0b..c9b641e 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\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/tr/)\n" - "Language: tr\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" --"X-Generator: Zanata 3.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -174,46 +174,43 @@ msgstr "" - msgid "Select a workflow to run: " - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -221,118 +218,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "" -@@ -381,7 +385,7 @@ msgstr "" - msgid "C_onfigure" - msgstr "" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "" - -@@ -407,7 +411,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "" - -@@ -486,60 +490,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Öteki GUI dosyası" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Bir metin dosyasını görüntüle/düzenle" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(görüntüleme/düzenleme için buraya tıklayın)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(ikili dosya, %llu byte)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(tanım yok" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu byte, %u dosya" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -548,7 +552,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -556,7 +560,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -568,174 +572,155 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "'%s' olayı için hiçbir işlem tanımlanmamış" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" - "Do you want to continue?" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' alışılmış bir dosya değil" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Bir dosyayı kendisinin üzerine kopyalamaya çalışıyorsunuz" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Kopyalanamıyor '%s': %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "'%s' öğesi mevcut ve değiştirilebilir değil" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "İçermek" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Ad" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Değer" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Problem tanımı" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Ek bilgi sağla" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Verileri gözden geçir" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Raporlama için veriyi doğrulayın" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Detaylar" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -784,26 +769,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -814,7 +779,7 @@ msgstr "" - "geçirmeniz ve sorunun nereye raporlanması gerektiğini seçmeniz istenecektir. " - "Devam etmek için 'İleri'yi tıklayınız." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -823,11 +788,11 @@ msgstr "" - "Bu sorun nasıl oldu (adım adım)? Nasıl yeniden oluşturulabilir? Sorunun " - "teşhisi için ek yorumlarınız? Mümkünse, lütfen İngilizce kullanınız. " - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "İlerlemeden önce nasıl alanını doldurmanız gerekli..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -835,31 +800,31 @@ msgstr "" - "Yorumlarınız gizli değil. Kamuya açık problem raporlarına " - "eklenebilirler." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Bu soruna ne sebep oldu bilmiyorum" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Boyut:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Dosya ekle" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Veriyi tekrar gözden geçirdim ve bunun sunulması _görüşündeyim" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -869,19 +834,19 @@ msgstr "" - "verilerin(kullanıcı adı , şifre vs) silindiğinden emin olun. Geri izleme, " - "komut satırı, ortam değişkenleri sınanması gerekenler." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Hata raporunu göster" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Raporlama bitti. Şimdi ekranı kapatabilirsiniz." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -891,16 +856,15 @@ msgstr "" - "da sorun açıklamasını zenginleştirerek raporlama sürecini tekrar edin, " - "'ileri'ye tıklayın." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "" - -@@ -926,89 +890,130 @@ msgstr "" - msgid "Can't delete '%s': %s" - msgstr "" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" - msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Yüklenen: %llu / %llu kbyte" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "%s %s e gönderiliyor" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "%s %s e başarılı bir şekilde gönderildi" -+msgid "Successfully created %s" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Eksik zorunlu değer" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Geçersiz utf8 karakter '%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Geçeris sayı '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Geçersiz Boole değeri '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Desteklenmeyen seçenek tipi" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1016,84 +1021,109 @@ msgstr "" - "Geri izleme tamamlanamamış , lütfen tekrar üretmek için gerekli adımları " - "sağladığınızdan emin olun." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Raporlama devre dışı çünkü geri izleme kullanılamaz." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" - "%s\n" - msgstr "" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "" -@@ -1124,21 +1154,34 @@ msgstr "" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "" -@@ -1221,49 +1264,69 @@ msgid "Bugzilla account password" - msgstr "Bugzilla hesap şifresi" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla sunucusunun adresi" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "SSL'i doğrula" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "SSL anahtarının geçerliliğini kontrol et" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1272,8 +1335,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1282,8 +1345,8 @@ msgstr "" - msgid "Sets the proxy server to use for HTTP" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1292,8 +1355,8 @@ msgstr "" - msgid "HTTPS Proxy" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1302,27 +1365,6 @@ msgstr "" - msgid "Sets the proxy server to use for HTTPS" - msgstr "" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1351,13 +1393,13 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "" -@@ -1372,7 +1414,7 @@ msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1387,7 +1429,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1422,157 +1464,198 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Yapılandırma dosyası(birçok kez verilebilir)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "DOSYA ekle[ID si ile hata]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Daha önce bildirilmiş olsa bile raporlamaya zorla" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Oturum kapatılıyor" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Benzerleri kontrol ediliyor" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Yeni hata yaratma" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Hata raporlandı: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "%d hatasına yeni yorum ekleme" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "" -@@ -1597,7 +1680,7 @@ msgid "" - msgstr "" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Yapılandırma dosyası" - -@@ -1627,12 +1710,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "Mail gönderiliyor..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1641,11 +1724,11 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Yapılandırma dosyası" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "" - -@@ -1677,34 +1760,34 @@ msgstr "Kullanıcı tarafından iptal edildi" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Rapor %s e eklendi" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Rapor %s te saklandı" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1713,77 +1796,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "FILES yükle[IDsiyle birlikte]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "'%s' '%s' durumuna bağlanıyor" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Sıkıştırılmış veri" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "" -@@ -1796,41 +1883,49 @@ msgstr "" - msgid "Updates which possibly help: " - msgstr "Yardımcı olabilecek güncellemeler:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Arşiv yaratıldı: '%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1847,7 +1942,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1890,48 +1985,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -1939,47 +2034,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2015,39 +2110,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2209,6 +2307,22 @@ msgstr "" - msgid "Sets the proxy server to use for FTP" - msgstr "" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "" -@@ -2274,24 +2388,24 @@ msgstr "" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "%i hatası aynısı olduğu kapatıldı, fakat o DUP_ID ye sahip değil" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" - "tickets for more info" - msgstr "" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Yeni hata id: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla %d hatasının üst hatasını bulamadı" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - -@@ -2484,65 +2598,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2551,51 +2689,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "" - -diff --git a/po/uk.po b/po/uk.po -index 7267802..27d264b 100644 ---- a/po/uk.po -+++ b/po/uk.po -@@ -10,18 +10,18 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"PO-Revision-Date: 2015-02-07 02:11-0500\n" -+"PO-Revision-Date: 2015-05-22 12:45-0400\n" - "Last-Translator: Yuri Chornoivan \n" - "Language-Team: Ukrainian (http://www.transifex.com/projects/p/libreport/" - "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.6.2\n" -+"X-Generator: Zanata 3.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -187,46 +187,44 @@ msgstr "Виберіть подію для запуску: " - msgid "Select a workflow to run: " - msgstr "Виберіть спосіб дій: " - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "Видобування cpio з {0}" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "Не вдалося виконати запис до «{0}»: {1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "Не вдалося видобути пакунок «{0}»" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "Кешування файлів з {0}, створених на основі {1}" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "Не вдалося видобути файли з «{0}»" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" -+"Не вдалося видобути файли з «{0}». Докладніший опис можна знайти тут: «{1}»" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "Не вдалося вилучити «{0}»: {1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "Звантаження ({0} з {1}) {2}: {3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "Ініціалізуємо засіб керування пакунками" - -@@ -234,41 +232,41 @@ msgstr "Ініціалізуємо засіб керування пакунка - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "Налаштовування сховищ" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "Пошук потрібних пакунків у сховищах" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "Не вдалося знайти пакунки з файлами діагностичних даних для {0}" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "Пакунки, які слід звантажити: {0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "" - "Звантаження {0:.2f} МБ, об’єм встановлених пакунків: {1:.2f} МБ. " - "Продовжувати?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "Звантаження скасовано користувачем" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" -@@ -276,7 +274,7 @@ msgstr "" - "Попередження: у тимчасовому каталозі «{0}» недостатньо місця (залишилося {1:." - "2f} МБ). Продовжити виконання дії?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " -@@ -285,38 +283,47 @@ msgstr "" - "Попередження: у каталозі кешування «{0}» недостатньо місця (залишилося {1:." - "2f} МБ). Продовжити виконання дії?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "Помилка під час спроби звантаження пакунка {0}" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "Помилка розпакування, звантаження перервано…" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+"Власником «{0}» має бути abrt. Будь ласка, віддайте команду «chown -R abrt." -+"abrt {0}» (від імені адміністратора), щоб виправити помилку." -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "Вилучення {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "Не вдалося вилучити {0}, ймовірно містить журнал обробки помилки" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "Помилка під час спроби прочитати налаштування сховища: «{0!s}»" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "Помилка під час спроби налаштувати сховища: «{0!s}»" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" -@@ -324,39 +331,39 @@ msgstr "" - "Під час отримання даних з дзеркала «{1!s}» виникла проблема «{0!s}». " - "Намагаємося скористатися наступним." - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "" - "Помилка під час спроби ініціалізації yum (YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "Помилка: не вдалося створити каталог кешування, завершуємо роботу" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "Не вдалося вимкнути сховище «{0!s}»: {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "" - "Неможливо вимкнути асинхронне отримання даних, виведені дані може бути " - "пошкоджено!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "Не вдалося налаштувати {0}: {1}, вимикаємо" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "Помилка під час спроби отримання метаданих: «{0!s}»" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "Помилка під час спроби отримання списків файлів: «{0!s}»" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "Не вдалося скопіювати файл «{0}»: {1}" -@@ -405,7 +412,7 @@ msgstr "Події" - msgid "C_onfigure" - msgstr "На_лаштувати" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "_Закрити" - -@@ -432,7 +439,7 @@ msgstr "" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "_Скасувати" - -@@ -525,7 +532,7 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "Альтернативний файл графічного інтерфейсу" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " -@@ -534,15 +541,15 @@ msgstr "" - "Потрібен придатний до запису каталог. Каталог «%s» непридатний до запису. " - "Пересунути файли до «%s» ви працювати з пересунутими даними?" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "Перегляд/Редагування текстового файла" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "З_берегти" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" -@@ -550,39 +557,39 @@ msgstr "" - "Для цієї проблеми не визначено призначень для звітів. Перевірити це можна за " - "допомогою налаштувань у /etc/libreport/*" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(потребує %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(непотрібне, дані вже існують: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(натисніть для перегляду або редагування)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(бінарний файл, %llu байтів)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(без опису)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu байтів, %u файлів" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "Обробку скасовано" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -596,7 +603,7 @@ msgstr "" - "\t▫ пошкоджені дані щодо проблеми\n" - "\t▫ некоректні налаштування" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -608,7 +615,7 @@ msgstr "" - "у меню програми, а після застосування змін у налаштуваннях натисніть кнопку " - "Повторити." - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -629,106 +636,54 @@ msgstr "" - "Вивантажені дані зберігаються у захищеному сховищі, доступ до їхнього " - "читання матиме лише обмежене коло розробників." - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "" - "Обробку було перервано, оскільки проблема не є придатною до звітування." - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "Спроба обробки завершилася невдало." - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "Обробку завершено." - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "Обробку завершено, будь ласка, перейдіть до наступного кроку." - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"Надіслано запит щодо створення конфіденційного квитка, але назва групи " --"private є застарілою Будь ласка, скористайтеся назвою групи " --"fedora_contrib_private Натисніть кнопку «Так» або оновіть " --"налаштування вручну. Ви також можете натиснути кнопку «ні», якщо ви справді " --"маєте намір скористатися групою private.\n" --"\n" --"Якщо ви не впевнені щодо того, який варіант слід вибрати, натисніть кнопку " --"«Так».\n" --"\n" --"Докладніше про створення звітів щодо вад:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" --"Надіслано запит щодо створення конфіденційного квитка, але назва групи " --"private є застарілою. Будь ласка, скористайтеся назвою групи " --"fedora_contrib_private. Натисніть кнопку «Так» або оновіть " --"налаштування вручну. Ви також можете натиснути кнопку «ні», якщо ви справді " --"маєте намір скористатися групою private.\n" --"\n" --"Якщо ви не впевнені щодо того, який варіант слід вибрати, натисніть кнопку " --"«Так».\n" --"\n" --"Докладніше про створення звітів щодо вад:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "Обробки для події «%s» не визначено" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "" - "Обробку перервано, продовження неможливе без придатного для запису каталогу." - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "Обробка…" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+"Виявлено ймовірно конфіденційні дані. Ви можете виконати редагування звіту з " -+"метою їхнього вилучення." -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "" - "Не вдалося визначити оцінку зворотного трасування, оскільки назва події є " - "некоректною" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -738,101 +693,109 @@ msgstr "" - "даних.\n" - "Продовжити процедуру надсилання?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "" - "Про цю проблему не варто повідомляти (ймовірно, про цю проблему вже відомо). " - "%s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "_Відкрити" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "«%s» не є звичайним файлом" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "Ви намагаєтеся скопіювати файл до цього ж файла" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "Не вдалося скопіювати «%s»: %s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "Пункт «%s» вже існує, його не можна змінювати" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "Включення" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "Назва" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "Значення" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "Опис проблеми" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "Виберіть спосіб звітування про цю проблему" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "Надання додаткових даних" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "Переглянути дані" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "Підтвердження даних звіту" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "Обробка" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "Обробку завершено" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "З_упинити" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "Вивантажити для аналізу" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "Повторити" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "_Далі" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "Подробиці" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "Обмежити доступ до звіту" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -890,30 +853,6 @@ msgstr "Пошук" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" --"Виявлено ймовірно конфіденційні дані. Ви можете виконати редагування звіту з " --"метою їхнього вилучення." -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "Обмежити доступ до звіту" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "" --"Звіт з обмеженим доступом не зможе переглянути ніхто (навіть ви), окрім " --"учасників групи Fedora Contrib" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "Докладніше про звіти з обмеженим доступом" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -924,7 +863,7 @@ msgstr "" - "адресу, за якою слід повідомити про проблему. Натисніть кнопку «Далі», щоб " - "продовжити процес звітування." - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " -@@ -934,12 +873,12 @@ msgstr "" - "проблему? Маєте додаткові коментарі, які будуть корисними для діагностування " - "причин проблеми? Будь ласка, надайте ці дані англійською мовою." - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "" - "Вам слід вказати настанови з відтворення, щоб обробку було продовжено…" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." -@@ -947,31 +886,31 @@ msgstr "" - "Ваші коментарі не будуть конфіденційними. Їх може бути включено до " - "відкритих до перегляду звітів про вади." - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "Якщо ви не знаєте, як описати проблему, ви можете:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "додати відеодемонстрацію" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "Причина проблеми мені не відома" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "Розмір:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "Долучити файл" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "Дані переглянуто, я по_годжуюся з їхнім надсиланням" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " -@@ -982,19 +921,19 @@ msgstr "" - "дані можуть зберігатися у зворотному трасуванні, записах командного рядка, " - "змінних середовища." - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "Обробку ще не почато" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "Показати журнал" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "Звітування завершено. Тепер це вікно можна закрити." - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " -@@ -1004,16 +943,15 @@ msgstr "" - "додаткові дані або надати кращий опис проблеми і повторити процедуру " - "звітування, натисніть кнопку «Далі»." - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "Докладні повідомлення" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "Каталог проблеми" - -@@ -1039,78 +977,119 @@ msgstr "не є каталогом проблеми" - msgid "Can't delete '%s': %s" - msgstr "Не вдалося вилучити «%s»: %s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "Не вистачає обов’язкового елемента: «%s»" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "значення uid є некоректним: «%s»" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "Не вистачає обов’язкового елемента: «%s»" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "Вивантажено: %llu з %llu кілобайтів" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "Надсилання %s до %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" --msgstr "Будь ласка, вкажіть ім’я користувача «%s»:" -+msgid "Please enter user name for '%s//%s':" -+msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" --msgstr "Будь ласка, вкажіть пароль до «%s»:" -+msgid "Please enter password for '%s//%s@%s':" -+msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 -+#, c-format -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "Успішно надіслано %s до %s" -+msgid "gzip exited with %d" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "Не вистачає обов’язкового значення" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "Некоректний символ utf8 «%c»" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "Некоректне число «%s»" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "Некоректне значення булевого типу «%s»" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "Непідтримуваний тип параметра" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " -@@ -1119,11 +1098,11 @@ msgstr "" - "Звіт про проблему не може бути створено через некоректні дані. Файл «%s» не " - "містить номера." - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "Будь ласка, повідомте про цю проблему розробникам проекту ABRT." - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." -@@ -1131,17 +1110,17 @@ msgstr "" - "Неповні відомості трасування. Вам доведеться вказати чіткі кроки з " - "відтворення помилки." - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "" - "Ймовірно, дані зворотного трасування не будуть корисними для діагностування " - "вади." - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "Звітування вимкнено, оскільки зворотне трасування є непридатним." - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" -@@ -1151,13 +1130,28 @@ msgstr "" - "повторіть спробу\n" - "." - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "" - "Ймовірно, не вистачає належних даних debuginfo або пошкоджено дані дампу " - "core." - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1166,30 +1160,40 @@ msgstr "Здається, вашу проблему спричинено %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "Здається, вашу проблему спричинено однією з таких причин:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "Не вдалося вивантажити uReport на сервер «%s» за допомогою curl: %s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "" - "Сторінки з адресою «%s» не існує (отримано повідомлення про помилку 404 від " - "сервера)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "" - "На сервері за адресою «%s» сталася внутрішня помилка (отримано повідомлення " - "про помилку 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "" -@@ -1197,33 +1201,33 @@ msgstr "" - "про помилку 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "Неочікувана відповідь HTTP від «%s»: %d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "Не вдалося обробити відповідь від сервера ureport за адресою «%s»" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "Відповідь від «%s» створено у некоректному форматі" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "У відповіді від «%s» виявлено невідповідність типів" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "Не вдалося надіслати дані проблеми" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "Сервер за адресою «%s» повідомив про помилку: «%s»" -@@ -1256,21 +1260,34 @@ msgstr "" - "Не вдалося створити опис трасування стека (немає аварійного потоку " - "виконання?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "У нотатці не міститься оцінки" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "(роботу «%s» було перервано сигналом %u)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "(«%s» успішно завершено)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "(«%s» завершено роботу з кодом %u)\n" -@@ -1360,32 +1377,58 @@ msgid "Bugzilla account password" - msgstr "Пароль облікового запису Bugzilla" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "Обмежити доступ" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "" -+"Обмежити доступ до запису у системі стеження за вадами так, щоб переглядати " -+"його могли лише користувачів з певних груп (див. додаткові параметри, щоб " -+"дізнатися більше)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "Групи" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"Обмежити доступ так, щоб його мали лише вказані групи <a href=\"https://" -+"github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</" -+"a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Адреса Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Адреса сервера Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "Перевірити SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "Перевірити чинність ключа SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Продукт у Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" -@@ -1393,11 +1436,11 @@ msgstr "" - "Вкажіть, лише якщо вам слід вказати інший продукт, який не вказано у /etc/os-" - "release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Версія продукту у Bugzilla" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" -@@ -1405,8 +1448,8 @@ msgstr "" - "Вкажіть, лише якщо вам слід вказати іншу версію продукту, яку не вказано у /" - "etc/os-release" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1415,8 +1458,8 @@ msgstr "" - msgid "HTTP Proxy" - msgstr "HTTP-проксі" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1425,8 +1468,8 @@ msgstr "HTTP-проксі" - msgid "Sets the proxy server to use for HTTP" - msgstr "Встановити проксі-сервер, який слід використовувати для HTTP" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1435,8 +1478,8 @@ msgstr "Встановити проксі-сервер, який слід вик - msgid "HTTPS Proxy" - msgstr "HTTPS-проксі" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1445,33 +1488,6 @@ msgstr "HTTPS-проксі" - msgid "Sets the proxy server to use for HTTPS" - msgstr "Встановити проксі-сервер, який слід використовувати для HTTPS" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "Обмежити доступ" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "" --"Обмежити доступ до запису у системі стеження за вадами так, щоб переглядати " --"його могли лише користувачів з певних груп (див. додаткові параметри, щоб " --"дізнатися більше)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "Групи" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"Обмежити доступ так, щоб його мали лише вказані групи <a href=\"https://" --"github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</" --"a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1513,13 +1529,13 @@ msgstr "" - "рядка, ігноруємо значення змінної середовища та запис налаштувань." - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "Продовження неможливе без зазначення облікового запису" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "Продовження неможливе без зазначення пароля" -@@ -1532,11 +1548,11 @@ msgstr "Вхід до Bugzilla від імені %s" - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" - msgstr "" --"Некоректний пароль або ім’я користувача. Будь ласка, вкажіть назву вашого " --"облікового запису у системі стеження за вадами:" -+"Не коректний пароль або ім’я користувача. Будь ласка, введіть ваше ім’я " -+"користувача у Bugzilla:" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "" -@@ -1553,7 +1569,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1587,125 +1603,94 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g НАЗВА-ГРУПИ]... [-c ФАЙЛ_НАЛАШТУВАНЬ]... [-F ФАЙЛ_ФОРМАТУВАННЯ] " --"[-A ФАЙЛ_ФОРМАТУВАННЯ2] -d КАТАЛОГ\n" --"або\n" --"& [-v] [-c ФАЙЛ_НАЛАШТУВАНЬ]... [-d КАТАЛОГ] -t[ІД] ФАЙЛ...\n" --"або\n" --"& [-v] [-c ФАЙЛ_НАЛАШТУВАНЬ]... [-d КАТАЛОГ] -t[ІД] -w\n" --"або\n" --"& [-v] [-c ФАЙЛ_НАЛАШТУВАНЬ]... -h DUPHASH\n" --"\n" --"Сповістити про проблему за допомогою Bugzilla.\n" --"\n" --"Програма виконує читання даних з каталогу КАТАЛОГ. Після цього входить\n" --"до Bugzilla і намагається знайти ваду з тим самим значенням\n" --"abrt_hash:ШІСТНАДЦЯТКОВИЙ_РЯДОК у полі «Whiteboard».\n" --"\n" --"Якщо такої вади виявлено не буде, буде створено нове повідомлення щодо вади.\n" --"Дані з каталогу КАТАЛОГ буде збережено у повідомленні як частину опису або\n" --"долучення, залежно від типу і розміру даних.\n" --"\n" --"Якщо ж ваду буде знайдено, а повідомлення щодо неї буде позначено\n" --"міткою CLOSED DUPLICATE, програма спробує пройти ланцюжком дублікатів, аж\n" --"доки не знайде ваду без позначки DUPLICATE.\n" --"Після цього до знайденого повідомлення буде додано новий коментар.\n" --"\n" --"Адресну нового або зміненого повідомлення про ваду буде виведено до stdout\n" --"і записано у елементі «reported_to».\n" --"\n" --"У разі використання параметра -t ФАЙЛИ буде вивантажено до вже створеного\n" --"повідомлення про ваду на сайті Bugzilla.\n" --"Ідентифікатор (ІД) вади буде отримано з каталогу, вказаного за допомогою\n" --"-d КАТАЛОГ.\n" --"Якщо дані щодо проблеми у каталозі КАТАЛОГ ще ніколи не повідомлялися за\n" --"допомогою Bugzilla, вивантаження зазнає невдачі.\n" --"\n" --"Використання параметра -tІД надає змогу вивантажити ФАЙЛИ до повідомлення\n" --"про ваду з вказаним ідентифікатором Bugzilla ІД.\n" --"-d КАТАЛОГ у цьому випадку буде проігноровано.\n" --"\n" --"За допомогою параметра -w можна додати користувача до списку обміну\n" --"повідомленнями щодо вади.\n" --"\n" --"За допомогою параметра -r можна встановити у полі адреси останню адресу з " --"елемента\n" --"reporter_to, до якої буде додано вміст TRACKER_NAME. Цей параметр " --"застосовується\n" --"лише під час створення нових звітів щодо вад. Типовим значенням є «ABRT " --"Server».\n" --"\n" --"Якщо не вказано явно, типовим значенням параметра ФАЙЛ_НАЛАШТУВАНЬ є " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "Файл налаштувань (можна вказувати декілька файлів)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "Файл форматування для початкового коментаря" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "Файл форматування для дублікатів" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "Долучити ФАЙЛи [до вади з вказаним ідентифікатором]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "Долучити до звіту щодо вади бінарні файли" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "Створити звіт, навіть якщо про цю проблему вже було повідомлено" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "" - "Додати користувача до списку обміну повідомленнями щодо вади [з цим " - "ідентифікатором]" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "Вивести BUG_ID за вказаним DUPHASH" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "" - "Назва системи стеження за вадами для додаткової адреси з «reported_to»" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "Обмежити доступ лише учасниками цієї групи" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "Діагностика" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "Шукаємо схожі проблеми у системі стеження за вадами" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" - msgstr "" - "У налаштуваннях не вказано облікового запису користувача. Будь ласка, " --"вкажіть ім’я вашого користувача Bugzilla:" -+"введіть ваше ім’я користувача у Bugzilla:" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " -@@ -1713,7 +1698,7 @@ msgid "" - msgstr "" - "У налаштуваннях не вказано пароля. Будь ласка, вкажіть пароль для «%s»:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." -@@ -1721,7 +1706,7 @@ msgstr "" - "Не вдалося отримати ідентифікатор Bugzilla, оскільки про цю проблему ще не " - "було повідомлено у Bugzilla." - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " -@@ -1730,75 +1715,97 @@ msgstr "" - "Про цю проблему було складено звіт у Bugzilla «%s», тобто до Bugzilla, " - "відмінної від налаштованої «%s»." - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "Помилкове форматування адреси Bugzilla «%s»." - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "Використовуємо ідентифікатор Bugzilla «%s»" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "Завершення сеансу" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "Не вдалося визначити продукт для Bugzilla для даних проблеми." - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "Пошук дублікатів" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "Створення нового повідомлення про ваду" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "Не вдалося створити повідомлення про ваду." - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "Додаємо зовнішню адресу до вади %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "Додавання долучень до повідомлення про ваду %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "Запит вже існує: %i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "Додавання %s до списку CC" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "Додавання коментаря до запиту (%d)" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "Долучення кращого зворотного трасування" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "У журналі вади виявлено тотожний коментар, новий не буде додано" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "Стан: %s%s%s %s/show_bug.cgi?id=%u" -@@ -1834,7 +1841,7 @@ msgstr "" - "Параметр може бути перевизначено за допомогою $KerneloopsReporter_SubmitURL." - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "Файл налаштувань" - -@@ -1866,12 +1873,12 @@ msgstr "Надсилаємо повідомлення зі сповіщення - msgid "Sending an email..." - msgstr "Надсилання пошти…" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "Повідомлення було надіслано: %s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1885,11 +1892,11 @@ msgstr "" - "\n" - "Якщо значення ФАЙЛ_НАЛАШТУВАНЬ не вказано, типовим файлом буде " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "Файл налаштувань" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "Лише сповістити (не позначати звіт як надісланий)" - -@@ -1926,36 +1933,36 @@ msgstr "" - "Не вдалося відкрити «%s» для виконання запису. Будь ласка, виберіть інший " - "файл:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "Звіт було долучено до %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "Звіт було збережено до %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "Сервер повідомив про помилку: «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "Хочете створити повідомлення для RHTSupport?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - "Некоректний пароль або ім’я користувача. Будь ласка, вкажіть ім’я " - "користувача у системі Red Hat:" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1963,92 +1970,87 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-v] [-c ФАЙЛ_НАЛАШТУВАНЬ] -d КАТАЛОГ\n" --"або:\n" --"& [-v] [-c ФАЙЛ_НАЛАШТУВАНЬ] [-d КАТАЛОГ] -t[ІД] [-u -C ФАЙЛ_НАЛАШТУВАНЬ_UR] " --"ФАЙЛ...\n" --"\n" --"Надсилає звіт щодо вади до RHTSupport.\n" --"\n" --"Якщо не вказано ФАЙЛ_НАЛАШТУВАНЬ, типові значення буде взято з " - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "Вивантажити ФАЙЛи [до запису випадку з вказаним ідентифікатором]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "Надіслати uReport до створення нового запису випадку" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "Файл налаштувань uReport" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "" - "У налаштуваннях не вказано облікового запису користувача. Будь ласка, " - "вкажіть ім’я вашого користувача у RHTS:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "Долучення «%s» до випадку «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "Надсилання статистичних даних ABRT щодо аварії" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "Не вдалося створити тимчасовий каталог у" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "Стискання даних" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "Не вдалося створити тимчасовий каталог у" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "Не вдалося створити тимчасовий файл у" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "Шукаємо підказки" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "Створення нового випадку" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "" - "Не вдалося визначити продукт для служби підтримки RH для даних проблеми." - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "Пов’язування запису статистичних даних щодо аварії ABRT з випадком" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - "Пов’язуємо запис статистики аварійного завершення роботи з ABRT із адресою " - "ел. пошти «%s»" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "Додаємо коментар до запису випадку «%s»" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "Долучаємо дані проблеми до запису випадку «%s»" -@@ -2061,48 +2063,51 @@ msgstr "Документація, яка може допомогти: " - msgid "Updates which possibly help: " - msgstr "Оновлення, які можуть допомогти:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "Продовжити звітування без адреси не вдасться" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" --"Будь ласка, вкажіть адресу (scp, ftp тощо), за якою слід експортувати дані " --"проблеми:" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "Будь ласка, вкажіть пароль для вивантаження:" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "Створено архів: «%s»" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d КАТАЛОГ [-c ФАЙЛ_НАЛАШТУВАНЬ] [-u АДРЕСА]\n" --"\n" --"Вивантажити архів даних у каталозі проблеми КАТАЛОГ за адресою АДРЕСА.\n" --"\n" --"Якщо адресу не вказано, буде створено архів у" - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "Базова адреса для вивантаження даних" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+"Будь ласка, вкажіть адресу (scp, ftp тощо), за якою слід експортувати дані " -+"проблеми:" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "Будь ласка, вкажіть пароль до вашого облікового запису MantisBT:" -@@ -2119,7 +2124,7 @@ msgstr "Реєстраційні дані не надано у налаштув - msgid "Invalid password or login." - msgstr "Некоректний пароль або ім’я користувача." - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -2207,20 +2212,20 @@ msgstr "" - "\n" - "Якщо не вказано, типовою назвою ФАЙЛА_НАЛАШТУВАНЬ є " - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "Долучити ФАЙЛи [до вади з цим ідентифікатором]" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "Не вдалося відкрити каталог проблеми «%s»." - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "Шукаємо подібні проблеми у MantisBT" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." -@@ -2228,7 +2233,7 @@ msgstr "" - "Не вдалося отримати ідентифікатор MantisBT, оскільки про цю проблему ще не " - "було повідомлено у MantisBT." - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " -@@ -2237,22 +2242,22 @@ msgstr "" - "Про цю проблему було складено звіт у MantisBT «%s», тобто до MantisBT, " - "відмінної від налаштованої «%s»." - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "Помилкове форматування адреси MantisBT «%s»." - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "Використовуємо ідентифікатор MantisBT «%s»" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "Долучаємо файл «%s» до запису вади %s" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2262,48 +2267,48 @@ msgstr "" - "все ще хочете створити нове повідомлення про ваду?" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "Створення нового повідомлення про ваду" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "Некоректний файл формату: %s" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "Не вдалося форматувати дані проблеми" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "Додавання зовнішньої адреси до запису вади" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "Додавання долучень до запису вади %i" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "Некоректне дублювання файла формату: «%s" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - "Не вдалося виконати форматування дубльованого коментаря із даних проблеми" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "Додавання нового коментаря до запису вади %d" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "У журналі вади виявлено тотожний коментар, новий не буде додано" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "Стан: %s%s%s %s/view.php?id=%u" -@@ -2342,18 +2347,27 @@ msgid "CentOS Bug Tracker account password" - msgstr "Пароль до облікового запису системи стеження за вадами CentOS" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 -+msgid "Restric access" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 - msgid "CentOS Bug Tracker URL" - msgstr "Адреса системи стеження за вадами CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "Адреса сервера системи стеження за вадами CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "Проект системи стеження за вадами CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" -@@ -2361,11 +2375,11 @@ msgstr "" - "Вкажіть, лише якщо вам слід вказати інший проект, який не вказано у /etc/os-" - "release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "Версія проекту системи стеження за вадами CentOS" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" -@@ -2373,15 +2387,6 @@ msgstr "" - "Вкажіть, лише якщо вам слід вказати інший номер проекту, який не вказано у /" - "etc/os-release" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" --"Обмежити доступ до запису у системі стеження за вадами CentOS так, щоб " --"переглядати його могли лише користувачів з певних груп (див. додаткові " --"параметри, щоб дізнатися більше)" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2551,6 +2556,22 @@ msgstr "FTP-проксі" - msgid "Sets the proxy server to use for FTP" - msgstr "Встановити проксі-сервер, який слід використовувати для FTP" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2628,7 +2649,7 @@ msgstr "" - "Обробку вади %i завершено (CLOSED), оскільки її визнано дублікатом " - "(DUPLICATE), але не вказано номера повідомлення-дубліката (DUP_ID)" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2638,17 +2659,17 @@ msgstr "" - "групи користувачів, які матимуть доступ до повідомлення, див. https://github." - "com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets for more info" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "Новий ідентифікатор запиту: %i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla не вдалося знайти батьківський запит для %d" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "" - "Bug.search(quicksearch) повернуто значення, у якому не містилося елемента " -@@ -2856,40 +2877,40 @@ msgstr "Проект MantisBT не було визначено." - msgid "Failed to get project id from name" - msgstr "Не вдалося отримати ідентифікатор проекту за назвою" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "Вказати адресу сервера" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "Дозволити незахищені з’єднання з сервером ureport" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "Розпізнавання клієнта" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "Використовувати розпізнавання HTTP" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "Додаткові файли, включені до ключа «auth»" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "хеш_bugzilla uReport для долучення (конфліктує з -A)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "долучити хеш_bugzilla з повідомлено (конфліктує з -a)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "" - "адреса електронної пошти для зв’язку (потребує -a|-A, конфліктує з -E)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" -@@ -2897,29 +2918,53 @@ msgstr "" - "адреса електронної пошти для зв’язку із середовища або файла налаштувань " - "(потребує -a|-A, конфліктує з -E)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "долучити ваду RHBZ (потребує -a|-A, конфліктує з -B)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "" - "долучити останню ваду RHBZ з повідомлено (потребує -a|-A, конфліктує з -B)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "долучити коротенький текст (потребує-a|-A, конфліктує з -D)" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - "долучити коротенький текст з файла comment (потребує-a|-A, конфліктує з -d)" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2927,43 +2972,44 @@ msgid "" - "\n" - "Reads the default configuration from " - msgstr "" --"& [-v] [-c ФАЙЛ] [-u АДРЕСА] [-k] [-t ДЖЕРЕЛО] [-h РЕЄСТРАЦІЙНІ ДАНІ]\n" --" [-A -a bthash -B -b ід_вади -E -e ел_пошта -O -o коментар] [-d КАТАЛОГ]\n" --"& [-v] [-c ФАЙЛ] [-u АДРЕСА] [-k] [-t ДЖЕРЕЛО] [-h РЕЄСТРАЦІЙНІ ДАНІ] [-i " --"AUTH_ITEMS] [-d КАТАЛОГ]\n" --" [-A -a bthash -B -b ід_вади -E -e ел_пошта] [-d КАТАЛОГ]\n" --"\n" --"Вивантажити мікрозвіт або додати долучення до мікрозвіту\n" --"\n" --"Типові параметри налаштувань буде отримано з " - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "До цього сповіщення про проблему не долучено даних uReport." - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "У Bugzilla немає повідомлень щодо цієї вади." - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "Не вдалося знайти ідентифікатор вади у адресі на bugzilla, «%s»" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "Не вдалося визначити ідентифікатор вади за адресою у bugzilla «%s»" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "Не вдалося долучити коментар з файла «comment»" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "файл «comment» є порожнім" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" -@@ -2971,21 +3017,21 @@ msgstr "" - "Не встановлено ні змінної середовища «uReport_ContactEmail», ні параметра " - "налаштувань «ContactEmail»" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - "Вам слід вказати ідентифікатор вади, адресу електронної пошти для зворотного " - "зв’язку, коментар або усі ці дані" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "Вам слід вказати хеш_bugzilla uReport для долучення." - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "Порожній uReport не вивантажуємо" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "Про цю проблему вже було повідомлено." - -diff --git a/po/zh_CN.po b/po/zh_CN.po -index da74c0b..c13bab8 100644 ---- a/po/zh_CN.po -+++ b/po/zh_CN.po -@@ -17,7 +17,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -27,7 +27,7 @@ msgstr "" - "libreport/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.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -186,46 +186,43 @@ msgstr "选择一个要运行的事件:" - msgid "Select a workflow to run: " - msgstr "选择要运行的工作流:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "从 {0} 中提取 cpio" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "无法写入 '{0}':{1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "无法提取软件包 '{0}'" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "从 {0} 缓存来自 {1} 的文件" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "无法从 '{0}' 中提取文件" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "无法删除 '{0}':{1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "下载({1} 中的 {0}){2}:{3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -233,118 +230,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "在库中查找所需软件包" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "无法为 {0} debuginfo 文件找到软件包" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "要下载的软件包:{0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "正在下载 {0:.2f}Mb,已安装:{1:.2f}Mb。继续吗?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "用户取消下载" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "警告:临时目录 '{0}' (剩余 {1:.2f}Mb)没有足够的空闲空间。继续?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "警告:缓存目录 '{0}' (剩余 {1:.2f}Mb) 中没有足够的空闲空间。继续?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "下载软件包 {0} 失败" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "提取失败,中断下载......" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "正在删除 {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "从镜像: '{1!s}' 下载时发生问题 '{0!s}'。尝试下一个" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "启动 yum 出错(YumBase.doConfigSetup): '{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "错误:无法创建缓存目录,正在退出" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "无法禁用仓库 '{0!s}': {1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "无法禁用异步下载,输出可能存在假象!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "无法设置 {0}:{1},禁用" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "检索元数据出错:'{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "检索文件列表出错:'{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "无法复制文件 '{0}': {1}" -@@ -393,7 +397,7 @@ msgstr "事件" - msgid "C_onfigure" - msgstr "配置(_O)" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "关闭(_C)" - -@@ -419,7 +423,7 @@ msgstr "保密服务不可用,您的设置将不会被保存!" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "取消(_C)" - -@@ -500,60 +504,60 @@ msgstr "& [-vpdx] [-e 事件]... [-g GUI 文件] 问题目录\n" - msgid "Alternate GUI file" - msgstr "备用 GUI 文件" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "需要可写入的目录,但 '%s' 不是可写入目录。将其移动到 '%s',并在移动后的数据中进行操作。" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "查看/编辑文本文件" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "保存(_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "尚未给此类问题指定报告目的地。检查位于 /etc/libreport/* 中的配置文件" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(需要: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(不必要,数据已经存在: %s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(点击这里查看/编辑)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(二进制文件,%llu字节)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(没有说明)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu字节,%u个文件" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "处理被取消" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -562,7 +566,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -570,7 +574,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -582,75 +586,48 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "由于该问题不可被汇报,处理已中止" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "处理失败。" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "处理结束。" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "处理结束,请前往下一步骤。" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "没有定义针对事件 `%s' 的处理" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "处理被中断: 目录不可写入,无法继续。" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "处理中……" - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "由于无效的事件名,无法检查回溯评级" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -658,99 +635,107 @@ msgid "" - msgstr "事件 '%s' 请求允许发布可能包含敏感数据的文件。\n" - "您想要继续吗?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "该问题可能不应该汇报 (很有可能为已知问题)。%s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "打开(_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "'%s' 不是普通文件" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "您正在将文件复制到它本身" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "无法复制 '%s':%s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "项目 '%s' 已存在且不可修改" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "包括" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "名称" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "值" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "问题描述" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "选择如何汇报此问题" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "提供附加信息" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "审核数据" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "确认要上传的汇报数据" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "处理中" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "处理完成" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "停止(_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "上传并分析" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "转发(_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "详情" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "限制报告访问" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -797,109 +782,88 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "限制报告访问" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "除了 Fedora Contrib 成员以外任何人都无法查看限制访问的报告(甚至包括您自己)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "阅读更多关于限制访问的内容" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " - "'Forward' to proceed." - msgstr "在下面的页面中,会询问您该问题是如何发生的,选择如何分析该问题(如果有必要),查看收集的信息,并选择向哪里报告该问题。点击“前进”继续。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "这个问题是如何发生的(具体步骤)?怎样才可以复制?是否有其他可帮助诊断该问题的附加注释?请尽量使用英语。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "执行前您需要填写如何进行......" - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "您的注释不是保密的。会将其包含在公开的问题报告中。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "如果您不知道如何描述,您可以" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "添加屏幕录像" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "我不知道造成这个问题的原因" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "大小:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "附加文件" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "我已经检查了数据并且同意提交(_A)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "如果您是要向远程服务器报告,请确定删除所有私人数据(不如用户名和密码)。Backtrace、命令行、环境变量是检查所需的常规项目。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "处理尚未开始" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "显示日志" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "汇报已完成,您现在可以关闭这个窗口了。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "如果您要向不同的地点报告这个问题、收集附加信息或者更好地描述这个问题并重复报告过程,请按“前进”。" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "详细输出" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "问题目录" - -@@ -925,114 +889,170 @@ msgstr "不是问题目录" - msgid "Can't delete '%s': %s" - msgstr "无法删除 '%s':%s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "y" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "N" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "f" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "缺少必要项: '%s'" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "UID 值无效: '%s'" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "缺少必要项: '%s'" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "上传的:%llu kb 中的 %llu" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "向 %s 发送 %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "成功向 %s 发送 %s" -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" -+ -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "缺少必需值" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "无效的 utf8 字符 ‘%c'" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "无效的数字 '%s'" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "无效的布尔值 '%s'" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "不支持的操作类型" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "由于无效的数据该问题无法汇报。'%s' 文件不包含数字。" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "请报告此问题给 ABRT 项目开发者。" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "回溯是不完整的,请确定您提供了重复该错误的完整步骤。" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "该回溯可能无法帮助开发者诊断 Bug。" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "由于回溯不可用,已禁用汇报。" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "请尝试使用命令: \"debuginfo-install %s\" 手动安装除错信息并再次尝试。" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "可能丢失了正确的出错信息或者内核转储被污染。" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1041,58 +1061,68 @@ msgstr "您的问题似乎由 %s 导致\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "您的问题似乎由以下原因之一导致:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "无法使用 curl 上传 uReport 至服务器 '%s':%s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL '%s' 不存在(服务器返回错误 404)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "位于 '%s' 的服务器遇到内部错误(得知错误 500)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "位于 '%s' 的服务器当前无法处理请求(得到错误 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "'%s' 中的意外 HTTP 响应:%d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "无法解析位于 '%s' 的 ureport 服务器的响应" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "来自 '%s' 的响应包含无效格式" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "在从 '%s' 得到的响应中检测到类型不匹配" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "提交问题失败" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "位于 '%s' 的服务器响应错误:'%s'" -@@ -1123,21 +1153,34 @@ msgstr "无法解析回溯:%s" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "无法生成堆栈跟踪描述 (没有崩溃线程?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "('%s' 被信号 %u 杀死)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "('%s' 成功完成)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "('%s' 以 %u 退出)\n" -@@ -1220,49 +1263,71 @@ msgid "Bugzilla account password" - msgstr "Bugzilla 账户密码" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "访问限制" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "通过用户组限制可访问 Bug 的用户(了解更多请进入高级选项)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "组" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"仅限特定组访问 <a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-private-" -+"bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla 服务器地址" - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "确认 SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "查看 SSL 密钥是否可用" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla 产品" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "只当您使用的产品和 /etc/os-release 中不同时在此处特别指出" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla 产品版本" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "只当您所使用产品版本和 /etc/os-release 中不同时在此特别指出" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1271,8 +1336,8 @@ msgstr "只当您所使用产品版本和 /etc/os-release 中不同时在此特 - msgid "HTTP Proxy" - msgstr "HTTP 代理" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1281,8 +1346,8 @@ msgstr "HTTP 代理" - msgid "Sets the proxy server to use for HTTP" - msgstr "设定用于 HTTP 的代理服务器" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1291,8 +1356,8 @@ msgstr "设定用于 HTTP 的代理服务器" - msgid "HTTPS Proxy" - msgstr "HTTPS 代理" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1301,29 +1366,6 @@ msgstr "HTTPS 代理" - msgid "Sets the proxy server to use for HTTPS" - msgstr "设定用于 HTTPS 的代理服务器" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "访问限制" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "通过用户组限制可访问 Bug 的用户(了解更多请进入高级选项)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "组" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"仅限特定组访问 <a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-private-" --"bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1361,13 +1403,13 @@ msgid "" - msgstr "警告,已在命令行参数指定私有标签组,忽略环境变量和配置" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "需要登录名才可继续" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "需要密码才可继续" -@@ -1379,10 +1421,10 @@ msgstr "在 %s 登录到 Bugzilla" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "无效的密码或登录名。请输入您的 Bugzilla 登录名:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "无效的密码或登录名。请输入 '%s' 的密码:" -@@ -1397,7 +1439,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1431,194 +1473,199 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g 组名]... [-c 配置文件]... [-F FMT文件] [-A FMT文件2] -d 目录\n" --"或:\n" --"& [-v] [-c 配置文件]... [-d 目录] -t[ID] 文件...\n" --"或:\n" --"& [-v] [-c 配置文件]... [-d 目录] -t[ID] -w\n" --"或:\n" --"& [-v] [-c 配置文件]... -h DUPHASH\n" --"\n" --"报告问题至 Bugzilla。\n" --"\n" --"该工具读取目录,之后登录至 Bugzilla 去尝试寻找‘白板(Whiteboard)’中包含相同 ABRT 哈希值 HEXSTRING 的 Bug。\n" --"\n" --"如果这样的 Bug 没有找到,那么将创建一个新的。目录中的元素将依据它们的类型和大小,分别做为 Bug 描述或附件保存。\n" --"\n" --"否则,如果找到相同的 Bug 并且被标识为 CLOSED DUPLICATE。\n" --"该工具会查询重复记录链条直到找到一个非重复的 Bug 为止。\n" --"然后将发现的 Bug 做为评论添加上去。\n" --"\n" --"指向新创建或者修改的 Bug 的 URL 将会打印至标准输出并保存到\n" --"'reported_to' 元素中。\n" --"\n" --"选项 -t 上传指定文件到在 Bugzilla 站点上已经存在的 Bug 上。\n" --"Bug ID 通过选项 -d 指定的目录提取。\n" --"如果包含在指定目录中的问题数据从未报告至 Bugzilla,上传会失败。\n" --"\n" --"选项 -tID 上传指定文件到 Bugzilla 上的指定 ID 上。\n" --"选项 -d 指定目录会被忽略。\n" --"\n" --"选项 -w 添加 Bugzilla 用户到 Bug 抄送列表上。\n" --"\n" --"选项 -r 设定来自 reporter_to 元素最后一个以指定\n" --"跟踪系统名为前缀的 URL 作为 URL 域。 该选项仅在提交一个新 Bug 误时使用。\n" --"默认值为 'ABRT Server'\n" --"\n" --"如果未指定,配置文件默认为" - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "配置文件(可在任意时间给出)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "格式化文件用于首次评论" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "格式化文件用于副本" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "附加 FILE [可选指定 ID 的 Bug]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "生成 Bug 时也请附加二进制文件" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "即使已经报告过该问题依然强行报告" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "添加 Bugzilla 用户到[可选指定 ID 的 Bug]抄送列表上" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "打印具备 DUPHASH 的 BUG_ID" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "''reported_to'中附加 URL 所指 Bug 跟踪系统的名字" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "仅限此组访问" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "除错" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "正在 Bugzilla 中寻找类似问题" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" --msgstr "配置中未提供登录信息。请输入您的 Bugzilla 登录名:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "配置中未提供密码。请输入用于 '%s' 的密码:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "无法取得 Bugzilla ID 因为该问题尚未汇报至 Bugzilla。" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "该问题已经汇报至 Bugzilla '%s' ,与预配置 Bugzilla '%s' 不同。" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "连接至 Bugzilla '%s' 的 URL 不规范。" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "使用 Bugzilla ID '%s'" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "正在退出" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "无法从问题数据中确定 Bugzilla 产品。" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "正在检查该问题是否已经汇报" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "正在创建新 Bug" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "创建新 Bug 失败。" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "添加外部 URL 至 Bug %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "在 Bug %i 中添加附件" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "该 Bug 之前已经被汇报至:%i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "正在添加 %s 至抄送列表" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "正在向 Bug %d 中添加新留言" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "附加更好的 backtrace" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "如果在 Bug 历史记录中找到相同的注释则不要再添加" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "状态:%s%s%s %s/show_bug.cgi?id=%u" -@@ -1653,7 +1700,7 @@ msgstr "" - "可使用 $KerneloopsReporter_SubmitURL 覆盖参数。" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "配置文件" - -@@ -1683,12 +1730,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "发送电子邮件......" - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "已发送电子邮件至:%s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1702,11 +1749,11 @@ msgstr "" - "\n" - "如未指定,则 CONFFILE 默认为" - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "配置文件" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "仅通知(不将报告标记为已发送)" - -@@ -1740,34 +1787,34 @@ msgstr "用户取消。" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "无法打开 '%s' 进行编写。请选择另一个文件:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "报告已被附加至 %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "报告已被保存至 %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "服务响应错误:'%s'" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "您还想生成 RHT 支持 ticket 吗?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1776,77 +1823,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "将 FILE 上传【到使用这个 ID 的案例】" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "配置中未提供登录信息。请输入您的 RHTS 登录名:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "在案例 '%s' 中附加 '%s'" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "无法创建临时目录于" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "压缩数据" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "无法创建临时目录于" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "无法创建临时文件于" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "检查是否有提示" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "创建一个新个案" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "无法从问题数据中确定红帽支持产品。" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "添加评论至个案 '%s'" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "添加问题数据至个案 '%s'" -@@ -1859,45 +1910,49 @@ msgstr "可能的相关文档:" - msgid "Updates which possibly help: " - msgstr "可能有帮助的更新:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "需要 URL 才可继续" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "生成归档:'%s'" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d 目录 [-c 配置文件] [-u URL]\n" --"\n" --"上传指定问题目录的压缩档案包至指定 URL。\n" --"如果未指定 URL,创建压缩档案包 " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "要上传的基本 URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1914,7 +1969,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1957,48 +2012,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2006,47 +2061,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2082,39 +2137,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2278,6 +2336,22 @@ msgstr "FTP 代理" - msgid "Sets the proxy server to use for FTP" - msgstr "设定用于 FTP 的代理服务器" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2343,7 +2417,7 @@ msgstr "Bug %i 已关闭,但还没有解决方案" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Bug %i 因为重复被关闭,但它没有 DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2352,17 +2426,17 @@ msgstr "" - "一个隐私 Ticket 请求已创建,但是尚未指定可访问用户组。请访问 https://github.com/abrt/abrt/wiki/" - "FAQ#creating-private-bugzilla-tickets 以了解更多详细信息。" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "新 Bug id:%i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla 无法找到 Bug %d 的父类 Bug" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) 返回值未包含成员 'bugs'" - -@@ -2555,65 +2629,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "指定服务器 URL" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "允许使用非加密链接到 uReport 服务器" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "使用用户认证" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "要附加的 uReport 的 bthash (与 -A 冲突)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "从 reported_to 附加到 bthash (与 -a 冲突)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "联系电子邮件地址 (需要 -a|-A,与 -E 冲突)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "联系来自环境或配置文件中的电邮地址(需要 -a|-A,与 -e 冲突)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "附上 RHBZ bug (需要 -a|-A,与 -B 冲突)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "从 reported_to 附加最新 RHBZ 问题 (需要 -a|-A,与 -b 冲突)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2622,51 +2720,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "该问题没有指派一个 uReport。" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "该问题尚未汇报至 Bugzilla。" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "无法在 Bugzilla URL '%s' 中找到 Bug ID" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "无法处理来自 Bugzilla URL '%s' 中的 Bug ID" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "环境变量 'uReport_ContactEmail' 和配置选项 'ContactEmail' 都未设置" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "您需要指定要添加的 uReport 的 bthash。" - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "不上传空白的 uReport" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "该问题已经被汇报过了。" - -diff --git a/po/zh_TW.po b/po/zh_TW.po -index bd95042..3e1219e 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-04-08 13:06+0200\n" -+"POT-Creation-Date: 2016-02-11 11:20+0100\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -20,7 +20,7 @@ msgstr "" - "libreport/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.8.2\n" - - #: ../src/cli/cli.c:63 - msgid "" -@@ -179,46 +179,43 @@ msgstr "選取要執行的事件:" - msgid "Select a workflow to run: " - msgstr "選取要執行的工作流程:" - --#: ../src/client-python/reportclient/debuginfo.py:98 -+#: ../src/client-python/reportclient/debuginfo.py:100 - #, python-brace-format - msgid "Extracting cpio from {0}" - msgstr "從 {0} 抽取 cpio" - --#: ../src/client-python/reportclient/debuginfo.py:103 -+#: ../src/client-python/reportclient/debuginfo.py:105 - #, python-brace-format - msgid "Can't write to '{0}': {1}" - msgstr "無法寫入「{0}」:{1}" - --#: ../src/client-python/reportclient/debuginfo.py:114 -+#: ../src/client-python/reportclient/debuginfo.py:116 - #, python-brace-format - msgid "Can't extract package '{0}'" - msgstr "無法抽出套件「{0}」" - --#: ../src/client-python/reportclient/debuginfo.py:122 -+#: ../src/client-python/reportclient/debuginfo.py:124 - #, python-brace-format - msgid "Caching files from {0} made from {1}" - msgstr "將來自 {0} 的檔案放入快取,這是由 {1} 所產生" - --#: ../src/client-python/reportclient/debuginfo.py:141 -+#: ../src/client-python/reportclient/debuginfo.py:148 - #, python-brace-format --msgid "Can't extract files from '{0}'" --msgstr "無法從「{0}」抽出檔案" -+msgid "Can't extract files from '{0}'. For more information see '{1}'" -+msgstr "" - --#: ../src/client-python/reportclient/debuginfo.py:154 -+#: ../src/client-python/reportclient/debuginfo.py:163 - #, python-brace-format - msgid "Can't remove '{0}': {1}" - msgstr "無法移除「{0}」:{1}" - --#. print (_("Downloading (%i of %i) %s: %3u%%") --#. % (self.downloaded_pkgs + 1, self.total_pkgs, name, pct) --#. ) --#: ../src/client-python/reportclient/debuginfo.py:197 --#: ../src/client-python/reportclient/debuginfo.py:208 -+#: ../src/client-python/reportclient/debuginfo.py:205 -+#: ../src/client-python/reportclient/debuginfo.py:214 - #, python-brace-format - msgid "Downloading ({0} of {1}) {2}: {3:3}%" - msgstr "正在下載 ({0} / {1}) {2}:{3:3}%" - --#: ../src/client-python/reportclient/debuginfo.py:308 -+#: ../src/client-python/reportclient/debuginfo.py:312 - msgid "Initializing package manager" - msgstr "" - -@@ -226,118 +223,125 @@ msgstr "" - #. # this suppress yum messages about setting up repositories - #. mute_stdout() - #. This takes some time, let user know what we are doing --#: ../src/client-python/reportclient/debuginfo.py:315 -+#: ../src/client-python/reportclient/debuginfo.py:319 - msgid "Setting up repositories" - msgstr "" - - #. if verbose == 0: - #. # re-enable the output to stdout - #. unmute_stdout() --#: ../src/client-python/reportclient/debuginfo.py:322 -+#: ../src/client-python/reportclient/debuginfo.py:326 - msgid "Looking for needed packages in repositories" - msgstr "從軟體庫中尋找所需套件" - --#: ../src/client-python/reportclient/debuginfo.py:326 -+#: ../src/client-python/reportclient/debuginfo.py:330 - #, python-brace-format - msgid "Can't find packages for {0} debuginfo files" - msgstr "找不到 {0} 個 debuginfo 檔案的套件" - --#: ../src/client-python/reportclient/debuginfo.py:328 -+#: ../src/client-python/reportclient/debuginfo.py:333 - #, python-brace-format - msgid "Packages to download: {0}" - msgstr "要下載的軟體包:{0}" - --#: ../src/client-python/reportclient/debuginfo.py:329 -+#: ../src/client-python/reportclient/debuginfo.py:335 - #, python-brace-format - msgid "Downloading {0:.2f}Mb, installed size: {1:.2f}Mb. Continue?" - msgstr "下載 {0:.2f}Mb,已安裝大小:{1:.2f}Mb。是否繼續?" - --#: ../src/client-python/reportclient/debuginfo.py:334 --#: ../src/client-python/reportclient/debuginfo.py:344 --#: ../src/client-python/reportclient/debuginfo.py:353 -+#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:352 -+#: ../src/client-python/reportclient/debuginfo.py:363 - msgid "Download cancelled by user" - msgstr "下載程序已被使用者中斷" - --#: ../src/client-python/reportclient/debuginfo.py:340 -+#: ../src/client-python/reportclient/debuginfo.py:347 - #, python-brace-format - msgid "" - "Warning: Not enough free space in tmp dir '{0}' ({1:.2f}Mb left). Continue?" - msgstr "警告:暫存目錄「{0}」中的可用空間不足 (剩下 {1:.2f}Mb)。是否繼續?" - --#: ../src/client-python/reportclient/debuginfo.py:349 -+#: ../src/client-python/reportclient/debuginfo.py:358 - #, python-brace-format - msgid "" - "Warning: Not enough free space in cache dir '{0}' ({1:.2f}Mb left). " - "Continue?" - msgstr "警告:快取目錄「{0}」中的可用空間不足 (剩下 {1:.2f}Mb)。是否繼續?" - --#: ../src/client-python/reportclient/debuginfo.py:370 -+#: ../src/client-python/reportclient/debuginfo.py:380 - #, python-brace-format - msgid "Downloading package {0} failed" - msgstr "下載套件 {0} 失敗" - - #. recursively delete the temp dir on failure --#: ../src/client-python/reportclient/debuginfo.py:377 -+#: ../src/client-python/reportclient/debuginfo.py:387 - msgid "Unpacking failed, aborting download..." - msgstr "解壓縮失敗,放棄下載……" - -+#: ../src/client-python/reportclient/debuginfo.py:392 -+#, python-brace-format -+msgid "" -+"'{0}' must be owned by abrt. Please run '# chown -R abrt.abrt {0}' to fix " -+"the issue." -+msgstr "" -+ - #. Was: "All downloaded packages have been extracted, removing..." - #. but it was appearing even if no packages were in fact extracted - #. (say, when there was one package, and it has download error). --#: ../src/client-python/reportclient/debuginfo.py:391 -+#: ../src/client-python/reportclient/debuginfo.py:409 - #, python-brace-format - msgid "Removing {0}" - msgstr "正在移除 {0}" - --#: ../src/client-python/reportclient/debuginfo.py:395 -+#: ../src/client-python/reportclient/debuginfo.py:413 - #, python-brace-format - msgid "Can't remove {0}, probably contains an error log" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:81 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:80 - msgid "Error reading repository configuration: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/dnfdebuginfo.py:98 -+#: ../src/client-python/reportclient/dnfdebuginfo.py:97 - msgid "Error setting up repositories: '{0!s}'" - msgstr "" - --#: ../src/client-python/reportclient/yumdebuginfo.py:64 -+#: ../src/client-python/reportclient/yumdebuginfo.py:66 - msgid "" - "Problem '{0!s}' occured while downloading from mirror: '{1!s}'. Trying next " - "one" - msgstr "當從鏡像站下載資料時遭遇問題「{0!s}」:'{1!s}'。改嘗試下一站" - --#: ../src/client-python/reportclient/yumdebuginfo.py:96 -+#: ../src/client-python/reportclient/yumdebuginfo.py:98 - msgid "Error initializing yum (YumBase.doConfigSetup): '{0!s}'" - msgstr "初始化 yum 時發生錯誤 (YumBase.doConfigSetup):'{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:103 -+#: ../src/client-python/reportclient/yumdebuginfo.py:105 - msgid "Error: can't make cachedir, exiting" - msgstr "錯誤:無法創建 cachedir,只得離開" - --#: ../src/client-python/reportclient/yumdebuginfo.py:112 -+#: ../src/client-python/reportclient/yumdebuginfo.py:114 - msgid "Can't disable repository '{0!s}': {1!s}" - msgstr "無法停用軟體庫「{0!s}」:{1!s}" - --#: ../src/client-python/reportclient/yumdebuginfo.py:131 -+#: ../src/client-python/reportclient/yumdebuginfo.py:133 - msgid "Can't disable async download, the output might contain artifacts!" - msgstr "無法停用 async 下載,輸出可能包含人為瑕疵!" - --#: ../src/client-python/reportclient/yumdebuginfo.py:133 -+#: ../src/client-python/reportclient/yumdebuginfo.py:135 - #, python-brace-format - msgid "Can't setup {0}: {1}, disabling" - msgstr "無法設置 {0}: {1},改停用" - --#: ../src/client-python/reportclient/yumdebuginfo.py:143 -+#: ../src/client-python/reportclient/yumdebuginfo.py:145 - msgid "Error retrieving metadata: '{0!s}'" - msgstr "擷取 metadata 時發生錯誤:'{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:156 -+#: ../src/client-python/reportclient/yumdebuginfo.py:158 - msgid "Error retrieving filelists: '{0!s}'" - msgstr "擷取檔案清單時發生錯誤:'{0!s}'" - --#: ../src/client-python/reportclient/yumdebuginfo.py:200 -+#: ../src/client-python/reportclient/yumdebuginfo.py:202 - #, python-brace-format - msgid "Cannot copy file '{0}': {1}" - msgstr "無法複製檔案「{0}」:{1}" -@@ -386,7 +390,7 @@ msgstr "事件" - msgid "C_onfigure" - msgstr "設定(_O)" - --#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3502 -+#: ../src/gtk-helpers/config_dialog.c:375 ../src/gui-wizard-gtk/wizard.c:3510 - msgid "_Close" - msgstr "關閉(_C)" - -@@ -412,7 +416,7 @@ msgstr "無法使用祕密服務,不會儲存您的設定!" - - #: ../src/gtk-helpers/event_config_dialog.c:349 - #: ../src/gtk-helpers/workflow_config_dialog.c:94 --#: ../src/gui-wizard-gtk/wizard.c:760 ../src/gui-wizard-gtk/wizard.c:3123 -+#: ../src/gui-wizard-gtk/wizard.c:777 ../src/gui-wizard-gtk/wizard.c:3131 - msgid "_Cancel" - msgstr "取消(_C)" - -@@ -494,60 +498,60 @@ msgstr "" - msgid "Alternate GUI file" - msgstr "其他 GUI 檔案" - --#: ../src/gui-wizard-gtk/wizard.c:357 -+#: ../src/gui-wizard-gtk/wizard.c:373 - #, c-format - msgid "" - "Need writable directory, but '%s' is not writable. Move it to '%s' and " - "operate on the moved data?" - msgstr "需要可寫入的目錄,但「%s」並不是可寫入的目錄。將它移到「%s」並在移動後的資料中操作。" - --#: ../src/gui-wizard-gtk/wizard.c:751 -+#: ../src/gui-wizard-gtk/wizard.c:768 - msgid "View/edit a text file" - msgstr "檢視或編輯文字檔案" - --#: ../src/gui-wizard-gtk/wizard.c:759 -+#: ../src/gui-wizard-gtk/wizard.c:776 - msgid "_Save" - msgstr "儲存(_S)" - --#: ../src/gui-wizard-gtk/wizard.c:976 -+#: ../src/gui-wizard-gtk/wizard.c:998 - msgid "" - "No reporting targets are defined for this problem. Check configuration in /" - "etc/libreport/*" - msgstr "此問題未定義回報目標。請確認 /etc/libreport/* 中的組態" - --#: ../src/gui-wizard-gtk/wizard.c:1018 -+#: ../src/gui-wizard-gtk/wizard.c:1040 - #, c-format - msgid "(requires: %s)" - msgstr "(需要:%s)" - --#: ../src/gui-wizard-gtk/wizard.c:1032 -+#: ../src/gui-wizard-gtk/wizard.c:1054 - #, c-format - msgid "(not needed, data already exist: %s)" - msgstr "(不需要,資料已經存在:%s)" - --#: ../src/gui-wizard-gtk/wizard.c:1222 -+#: ../src/gui-wizard-gtk/wizard.c:1244 - msgid "(click here to view/edit)" - msgstr "(請點擊此處以檢視或編輯)" - --#: ../src/gui-wizard-gtk/wizard.c:1233 -+#: ../src/gui-wizard-gtk/wizard.c:1255 - #, c-format - msgid "(binary file, %llu bytes)" - msgstr "(二元檔,%llu 位元組)" - --#: ../src/gui-wizard-gtk/wizard.c:1344 ../src/report-newt/report-newt.c:334 -+#: ../src/gui-wizard-gtk/wizard.c:1366 ../src/report-newt/report-newt.c:334 - msgid "(no description)" - msgstr "(無描述)" - --#: ../src/gui-wizard-gtk/wizard.c:1352 -+#: ../src/gui-wizard-gtk/wizard.c:1374 - #, c-format - msgid "%llu bytes, %u files" - msgstr "%llu 位元組,%u 個檔案" - --#: ../src/gui-wizard-gtk/wizard.c:1597 -+#: ../src/gui-wizard-gtk/wizard.c:1619 - msgid "Processing was canceled" - msgstr "已取消處理" - --#: ../src/gui-wizard-gtk/wizard.c:1801 -+#: ../src/gui-wizard-gtk/wizard.c:1830 - msgid "" - "Processing of the problem failed. This can have many reasons but there are " - "three most common:\n" -@@ -556,7 +560,7 @@ msgid "" - "\t▫ invalid configuration" - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1810 -+#: ../src/gui-wizard-gtk/wizard.c:1839 - msgid "" - "If you want to update the configuration and try to report again, please open " - "Preferences item\n" -@@ -564,7 +568,7 @@ msgid "" - "Repeat button." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1816 -+#: ../src/gui-wizard-gtk/wizard.c:1845 - msgid "" - "If you are sure that this problem is not caused by network problems neither " - "by invalid configuration\n" -@@ -576,75 +580,48 @@ msgid "" - "limited number of persons can read them." - msgstr "" - --#: ../src/gui-wizard-gtk/wizard.c:1935 -+#: ../src/gui-wizard-gtk/wizard.c:1964 - msgid "Processing was interrupted because the problem is not reportable." - msgstr "處理因問題無法回報而中斷。" - --#: ../src/gui-wizard-gtk/wizard.c:1945 ../src/gui-wizard-gtk/wizard.c:2086 -+#: ../src/gui-wizard-gtk/wizard.c:1974 ../src/gui-wizard-gtk/wizard.c:2045 - msgid "Processing failed." - msgstr "處理失敗。" - - #. No next event, go to progress page and finish --#: ../src/gui-wizard-gtk/wizard.c:1952 ../src/gui-wizard-gtk/wizard.c:2847 -+#: ../src/gui-wizard-gtk/wizard.c:1981 ../src/gui-wizard-gtk/wizard.c:2855 - msgid "Processing finished." - msgstr "處理完成。" - --#: ../src/gui-wizard-gtk/wizard.c:1953 -+#: ../src/gui-wizard-gtk/wizard.c:1982 - msgid "Processing finished, please proceed to the next step." - msgstr "處理完成,請繼續下個步驟。" - --#: ../src/gui-wizard-gtk/wizard.c:1993 --msgid "" --"Private ticket is requested but the group name 'private' has been deprecated." --" We kindly ask you to use 'fedora_contrib_private' group name. Click Yes " --"button or update the configuration manually. Or click No button, if you " --"really want to use 'private' group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets\n" --"https://bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.c:2001 --msgid "" --"Private ticket is requested but the group name private has been " --"deprecated. We kindly ask you to use fedora_contrib_private group " --"name. Click Yes button or update the configuration manually. Or click No " --"button, if you really want to use private group.\n" --"\n" --"If you are not sure what this dialogue means, please trust us and click Yes " --"button.\n" --"\n" --"Read more about the private bug reports at:\n" --"https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" --"tickets\n" --"https://" --"bugzilla.redhat.com/show_bug.cgi?id=1044653\n" --msgstr "" -- - #. TODO: better msg? --#: ../src/gui-wizard-gtk/wizard.c:2083 -+#: ../src/gui-wizard-gtk/wizard.c:2042 - #, c-format - msgid "No processing for event '%s' is defined" - msgstr "未定義「%s」事件的處理動作" - --#: ../src/gui-wizard-gtk/wizard.c:2097 -+#: ../src/gui-wizard-gtk/wizard.c:2056 - msgid "Processing interrupted: can't continue without writable directory." - msgstr "處理中斷:若無可寫入的目錄便無法繼續" - --#: ../src/gui-wizard-gtk/wizard.c:2134 -+#: ../src/gui-wizard-gtk/wizard.c:2093 - msgid "Processing..." - msgstr "處理中..." - --#: ../src/gui-wizard-gtk/wizard.c:2232 -+#: ../src/gui-wizard-gtk/wizard.c:2179 -+msgid "" -+"Possible sensitive data detected, feel free to edit the report and remove " -+"them." -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:2219 - msgid "Cannot check backtrace rating because of invalid event name" - msgstr "因為事件名稱無效而無法檢查追蹤資訊評等" - --#: ../src/gui-wizard-gtk/wizard.c:2867 -+#: ../src/gui-wizard-gtk/wizard.c:2875 - #, c-format - msgid "" - "Event '%s' requires permission to send possibly sensitive data.\n" -@@ -652,99 +629,107 @@ msgid "" - msgstr "事件「%s」要求傳送可能具敏感資訊資料的許可。\n" - "您是否要繼續?" - --#: ../src/gui-wizard-gtk/wizard.c:2915 -+#: ../src/gui-wizard-gtk/wizard.c:2923 - #, c-format - msgid "This problem should not be reported (it is likely a known problem). %s" - msgstr "此問題不應回報 (這很類似已知問題)。%s" - --#: ../src/gui-wizard-gtk/wizard.c:3124 -+#: ../src/gui-wizard-gtk/wizard.c:3132 - msgid "_Open" - msgstr "開啟(_O)" - --#: ../src/gui-wizard-gtk/wizard.c:3146 -+#: ../src/gui-wizard-gtk/wizard.c:3154 - #, c-format - msgid "'%s' is not an ordinary file" - msgstr "「%s」不是一般檔案" - --#: ../src/gui-wizard-gtk/wizard.c:3160 -+#: ../src/gui-wizard-gtk/wizard.c:3168 - msgid "You are trying to copy a file onto itself" - msgstr "您正試著將檔案複製到檔案自身之上" - --#: ../src/gui-wizard-gtk/wizard.c:3167 -+#: ../src/gui-wizard-gtk/wizard.c:3175 - #, c-format - msgid "Can't copy '%s': %s" - msgstr "無法複製「%s」:%s" - --#: ../src/gui-wizard-gtk/wizard.c:3182 -+#: ../src/gui-wizard-gtk/wizard.c:3190 - #, c-format - msgid "Item '%s' already exists and is not modifiable" - msgstr "項目「%s」已存在,無法修改" - --#: ../src/gui-wizard-gtk/wizard.c:3344 -+#: ../src/gui-wizard-gtk/wizard.c:3352 - msgid "Include" - msgstr "包含" - --#: ../src/gui-wizard-gtk/wizard.c:3355 -+#: ../src/gui-wizard-gtk/wizard.c:3363 - msgid "Name" - msgstr "名稱" - --#: ../src/gui-wizard-gtk/wizard.c:3365 -+#: ../src/gui-wizard-gtk/wizard.c:3373 - msgid "Value" - msgstr "值" - --#: ../src/gui-wizard-gtk/wizard.c:3399 -+#: ../src/gui-wizard-gtk/wizard.c:3407 - msgid "Problem description" - msgstr "問題描述" - --#: ../src/gui-wizard-gtk/wizard.c:3400 -+#: ../src/gui-wizard-gtk/wizard.c:3408 - msgid "Select how to report this problem" - msgstr "請選取回報此問題的方式" - --#: ../src/gui-wizard-gtk/wizard.c:3401 -+#: ../src/gui-wizard-gtk/wizard.c:3409 - msgid "Provide additional information" - msgstr "提供額外資訊" - --#: ../src/gui-wizard-gtk/wizard.c:3402 -+#: ../src/gui-wizard-gtk/wizard.c:3410 - msgid "Review the data" - msgstr "檢視資料" - --#: ../src/gui-wizard-gtk/wizard.c:3403 -+#: ../src/gui-wizard-gtk/wizard.c:3411 - msgid "Confirm data to report" - msgstr "確認欲回報的資料" - --#: ../src/gui-wizard-gtk/wizard.c:3404 -+#: ../src/gui-wizard-gtk/wizard.c:3412 - msgid "Processing" - msgstr "處理中" - --#: ../src/gui-wizard-gtk/wizard.c:3405 -+#: ../src/gui-wizard-gtk/wizard.c:3413 - msgid "Processing done" - msgstr "處理完成" - --#: ../src/gui-wizard-gtk/wizard.c:3504 -+#: ../src/gui-wizard-gtk/wizard.c:3512 - msgid "_Stop" - msgstr "停止(_S)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3507 -+#: ../src/gui-wizard-gtk/wizard.c:3515 - msgid "Upload for analysis" - msgstr "上傳以供分析" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3510 -+#: ../src/gui-wizard-gtk/wizard.c:3518 - msgid "Repeat" - msgstr "" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3512 -+#: ../src/gui-wizard-gtk/wizard.c:3520 - msgid "_Forward" - msgstr "前進(_F)" - - #. else gtk_widget_hide won't work --#: ../src/gui-wizard-gtk/wizard.c:3515 ../src/gui-wizard-gtk/wizard.glade.h:14 -+#: ../src/gui-wizard-gtk/wizard.c:3523 ../src/gui-wizard-gtk/wizard.glade.h:10 - msgid "Details" - msgstr "詳情" - --#: ../src/gui-wizard-gtk/wizard.c:3625 -+#: ../src/gui-wizard-gtk/wizard.c:3588 -+msgid "Restrict access to the report" -+msgstr "限制報告的存取" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3593 -+msgid "Learn more about restricted access in the configuration" -+msgstr "" -+ -+#: ../src/gui-wizard-gtk/wizard.c:3655 - msgid "" - "In order to enable the built-in screencasting functionality the package fros-" - "recordmydesktop has to be installed. Please run the following command if you " -@@ -791,26 +776,6 @@ msgstr "" - - #: ../src/gui-wizard-gtk/wizard.glade.h:9 - msgid "" --"Possible sensitive data detected, feel free to edit the report and remove " --"them." --msgstr "" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:10 --msgid "Restrict access to the report" --msgstr "限制報告的存取" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:11 --msgid "" --"No one except Fedora Contrib group members will be allowed to see the report " --"with restricted access (not even you)" --msgstr "除了 Fedora Contrib 群組成員外,沒有人可以查看存取受限的回報 (即使是您也無法)" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:12 --msgid "Read more about reports with restricted access" --msgstr "瞭解更多有關限制存取的資訊" -- --#: ../src/gui-wizard-gtk/wizard.glade.h:13 --msgid "" - "On the following screens, you will be asked to describe how the problem " - "occurred, to choose how to analyze the problem (if needed), to review " - "collected data, and to choose where the problem should be reported. Click " -@@ -818,83 +783,82 @@ msgid "" - msgstr "" - "在接下來的畫面上,您將會被要求描述問題如何發生、選擇如何分析問題 (若有需要)、檢視蒐集的資料,以及選擇問題該向哪回報。請按下「下一步」以繼續進行。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:15 -+#: ../src/gui-wizard-gtk/wizard.glade.h:11 - msgid "" - "How did this problem happen (step-by-step)? How can it be reproduced? Any " - "additional comments useful for diagnosing the problem? Please use English if " - "possible." - msgstr "這問題是怎麼發生的 (詳述步驟)?如何再次產生此問題?任何說明可以幫助我們診斷問題?請儘可能使用英文。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:16 -+#: ../src/gui-wizard-gtk/wizard.glade.h:12 - msgid "You need to fill the how to before you can proceed..." - msgstr "在繼續進行之前,您必須填入相關資訊..." - --#: ../src/gui-wizard-gtk/wizard.glade.h:17 -+#: ../src/gui-wizard-gtk/wizard.glade.h:13 - msgid "" - "Your comments are not private. They may be included into publicly " - "visible problem reports." - msgstr "您的評註並非隱私資訊。 它們可能納入能被公開查看的問題回報中。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:18 -+#: ../src/gui-wizard-gtk/wizard.glade.h:14 - msgid "If you don't know how to describe it, you can" - msgstr "若您不知道如何描述,您可以" - --#: ../src/gui-wizard-gtk/wizard.glade.h:19 -+#: ../src/gui-wizard-gtk/wizard.glade.h:15 - msgid "add a screencast" - msgstr "加入螢幕執演" - --#: ../src/gui-wizard-gtk/wizard.glade.h:20 -+#: ../src/gui-wizard-gtk/wizard.glade.h:16 - msgid "I don't know what caused this problem" - msgstr "我不知道這問題是什麼造成的" - --#: ../src/gui-wizard-gtk/wizard.glade.h:21 -+#: ../src/gui-wizard-gtk/wizard.glade.h:17 - msgid "Size:" - msgstr "大小:" - --#: ../src/gui-wizard-gtk/wizard.glade.h:22 -+#: ../src/gui-wizard-gtk/wizard.glade.h:18 - msgid "Attach a file" - msgstr "附加檔案" - --#: ../src/gui-wizard-gtk/wizard.glade.h:23 -+#: ../src/gui-wizard-gtk/wizard.glade.h:19 - msgid "I reviewed the data and _agree with submitting it" - msgstr "我已檢視資料,並同意提交資料(_A)" - --#: ../src/gui-wizard-gtk/wizard.glade.h:24 -+#: ../src/gui-wizard-gtk/wizard.glade.h:20 - msgid "" - "If you are reporting to a remote server, make sure you removed all private " - "data (such as usernames and passwords). Backtrace, command line, environment " - "variables are the typical items in need of examining." - msgstr "如果您已回報了遠端伺服器,請確定您已移除所有私人資料 (例如使用者名稱與密碼)。追蹤資訊、指令列、環境變數等通常是需要檢視的東西。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:25 -+#: ../src/gui-wizard-gtk/wizard.glade.h:21 - msgid "Processing did not start yet" - msgstr "尚未開始處理" - --#: ../src/gui-wizard-gtk/wizard.glade.h:26 -+#: ../src/gui-wizard-gtk/wizard.glade.h:22 - msgid "Show log" - msgstr "顯示記錄" - --#: ../src/gui-wizard-gtk/wizard.glade.h:27 -+#: ../src/gui-wizard-gtk/wizard.glade.h:23 - msgid "Reporting has finished. You can close this window now." - msgstr "回報已完成。您現在可將此視窗關閉。" - --#: ../src/gui-wizard-gtk/wizard.glade.h:28 -+#: ../src/gui-wizard-gtk/wizard.glade.h:24 - msgid "" - "If you want to report the problem to a different destination, collect " - "additional information, or provide a better problem description and repeat " - "reporting process, press 'Forward'." - msgstr "若您希望將問題回報至不同的目的地,請蒐集額外資訊,或提供較詳盡的問題描述、重複回報程序,並按下「下一步」。" - --#: ../src/include/internal_libreport.h:1095 -+#: ../src/include/internal_libreport.h:1175 - msgid "Be verbose" - msgstr "詳盡" - --#: ../src/include/internal_libreport.h:1096 --#: ../src/plugins/reporter-bugzilla.c:293 --#: ../src/plugins/reporter-kerneloops.c:166 --#: ../src/plugins/reporter-mailx.c:203 ../src/plugins/reporter-print.c:56 --#: ../src/plugins/reporter-rhtsupport.c:471 --#: ../src/plugins/reporter-upload.c:250 ../src/plugins/reporter-mantisbt.c:285 -+#: ../src/include/internal_libreport.h:1176 -+#: ../src/plugins/reporter-bugzilla.c:295 -+#: ../src/plugins/reporter-kerneloops.c:166 ../src/plugins/reporter-mailx.c:204 -+#: ../src/plugins/reporter-print.c:56 ../src/plugins/reporter-rhtsupport.c:491 -+#: ../src/plugins/reporter-upload.c:186 ../src/plugins/reporter-mantisbt.c:283 - msgid "Problem directory" - msgstr "問題目錄" - -@@ -920,114 +884,170 @@ msgstr "非問題目錄" - msgid "Can't delete '%s': %s" - msgstr "無法刪除「%s」:%s" - --#: ../src/lib/client.c:55 ../src/lib/client.c:87 -+#: ../src/lib/client.c:55 ../src/lib/client.c:87 ../src/lib/client.c:144 - msgid "y" - msgstr "是(y)" - --#: ../src/lib/client.c:56 ../src/lib/client.c:88 -+#: ../src/lib/client.c:56 ../src/lib/client.c:88 ../src/lib/client.c:145 - msgid "N" - msgstr "否(N)" - --#: ../src/lib/client.c:89 -+#: ../src/lib/client.c:89 ../src/lib/client.c:146 - msgid "f" - msgstr "永遠皆是(f)" - --#: ../src/lib/create_dump_dir.c:137 --#, c-format --msgid "Missing required item: '%s'" --msgstr "遺失需要的項目:「%s」" -+#: ../src/lib/client.c:147 -+msgid "e" -+msgstr "" - --#: ../src/lib/create_dump_dir.c:152 -+#: ../src/lib/create_dump_dir.c:32 - #, c-format - msgid "uid value is not valid: '%s'" - msgstr "UID 值無效:「%s」" - -+#: ../src/lib/create_dump_dir.c:51 -+#, c-format -+msgid "'%s' is not correct file name" -+msgstr "" -+ -+#: ../src/lib/create_dump_dir.c:189 -+#, c-format -+msgid "Missing required item: '%s'" -+msgstr "遺失需要的項目:「%s」" -+ - #: ../src/lib/curl.c:227 - #, c-format - msgid "Uploaded: %llu of %llu kbytes" - msgstr "已上傳:%llu / %llu 位元組" - --#: ../src/lib/curl.c:635 -+#: ../src/lib/curl.c:636 -+msgid "Ingoring URL without scheme and hostname" -+msgstr "" -+ -+#. Do not include the path part of the URL as it can contain sensitive data -+#. * in case of typos -+#: ../src/lib/curl.c:666 - #, c-format --msgid "Sending %s to %s" --msgstr "正將 %s 傳送至 %s" -+msgid "Sending %s to %s//%s" -+msgstr "" - --#: ../src/lib/curl.c:659 -+#: ../src/lib/curl.c:690 - #, c-format --msgid "Please enter user name for '%s':" -+msgid "Please enter user name for '%s//%s':" - msgstr "" - --#: ../src/lib/curl.c:665 -+#: ../src/lib/curl.c:696 - #, c-format --msgid "Please enter password for '%s':" -+msgid "Please enter password for '%s//%s@%s':" - msgstr "" - - #. This ends up a "reporting status message" in abrtd --#: ../src/lib/curl.c:688 -+#: ../src/lib/curl.c:719 -+#, c-format -+msgid "Successfully created %s" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2350 -+msgid "Failed to open TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2376 -+msgid "Failed to finalize TAR archive" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2386 -+msgid "Failed to close TAR writer" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2396 - #, c-format --msgid "Successfully sent %s to %s" --msgstr "已成功將 %s 傳送至 %s" -+msgid "gzip killed with signal %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2402 -+#, c-format -+msgid "gzip exited with %d" -+msgstr "" -+ -+#: ../src/lib/dump_dir.c:2405 -+msgid "gzip process failed" -+msgstr "" - --#: ../src/lib/event_config.c:348 -+#: ../src/lib/event_config.c:382 - msgid "Missing mandatory value" - msgstr "遺失必要的值" - --#: ../src/lib/event_config.c:356 -+#: ../src/lib/event_config.c:390 - #, c-format - msgid "Invalid utf8 character '%c'" - msgstr "無效的 utf8 字元「%c」" - --#: ../src/lib/event_config.c:369 -+#: ../src/lib/event_config.c:403 - #, c-format - msgid "Invalid number '%s'" - msgstr "無效的數字「%s」" - --#: ../src/lib/event_config.c:384 -+#: ../src/lib/event_config.c:418 - #, c-format - msgid "Invalid boolean value '%s'" - msgstr "無效的布林值「%s」" - --#: ../src/lib/event_config.c:390 -+#: ../src/lib/event_config.c:424 - msgid "Unsupported option type" - msgstr "不受支援的選項類型" - --#: ../src/lib/event_config.c:464 -+#: ../src/lib/event_config.c:498 - #, c-format - msgid "" - "The problem cannot be reported due to an invalid data. '%s' file does not " - "contain a number." - msgstr "無法回報問題,因為有資料無效。「%s」檔案並不包含數字。" - --#: ../src/lib/event_config.c:468 -+#: ../src/lib/event_config.c:502 - msgid "Please report this problem to ABRT project developers." - msgstr "請將此問題回報給 ABRT 專案開發者。" - --#: ../src/lib/event_config.c:474 -+#: ../src/lib/event_config.c:508 - msgid "" - "The backtrace is incomplete, please make sure you provide the steps to " - "reproduce." - msgstr "追蹤資訊不完整,請確認您已提供能夠重現問題的步驟。" - --#: ../src/lib/event_config.c:475 -+#: ../src/lib/event_config.c:509 - msgid "The backtrace probably can't help developer to diagnose the bug." - msgstr "追蹤資訊可能無法幫助開發者診斷臭蟲所在。" - --#: ../src/lib/event_config.c:481 -+#: ../src/lib/event_config.c:515 - msgid "Reporting disabled because the backtrace is unusable." - msgstr "已停用回報,因為無法使用追蹤功能。" - --#: ../src/lib/event_config.c:485 -+#: ../src/lib/event_config.c:519 - #, c-format - msgid "" - "Please try to install debuginfo manually using the command: \"debuginfo-" - "install %s\" and try again." - msgstr "請試著使用指令:\"debuginfo-install %s\" 來手動安裝 debugifo,並再重試一次。" - --#: ../src/lib/event_config.c:487 -+#: ../src/lib/event_config.c:521 - msgid "A proper debuginfo is probably missing or the coredump is corrupted." - msgstr "可能遺失適當的 debuginfo,或是核心傾印資料已損毀。" - --#: ../src/lib/ureport.c:410 -+#: ../src/lib/iso_date_string.c:50 -+#, c-format -+msgid "String doesn't seem to be a date: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:55 -+#, c-format -+msgid "The date: '%s' has unrecognized suffix: '%s'" -+msgstr "" -+ -+#: ../src/lib/iso_date_string.c:60 -+#, c-format -+msgid "The date: '%s' is out of UNIX time stamp range" -+msgstr "" -+ -+#: ../src/lib/ureport.c:393 - #, c-format - msgid "Your problem seems to be caused by %s\n" - "\n" -@@ -1036,58 +1056,68 @@ msgstr "您的問題似乎起因於 %s\n" - "\n" - "%s\n" - --#: ../src/lib/ureport.c:413 -+#: ../src/lib/ureport.c:396 - msgid "Your problem seems to be caused by one of the following:\n" - msgstr "您的問題似乎由下列問題之一所導致:\n" - --#: ../src/lib/ureport.c:584 -+#: ../src/lib/ureport.c:568 - #, c-format - msgid "Failed to upload uReport to the server '%s' with curl: %s" - msgstr "無法以 curl 上傳 uReport 至伺服器「%s」:%s" - --#: ../src/lib/ureport.c:590 -+#: ../src/lib/ureport.c:572 -+#, c-format -+msgid "Failed to upload uReport to the server '%s'" -+msgstr "" -+ -+#: ../src/lib/ureport.c:575 -+#, c-format -+msgid "Error: %s" -+msgstr "" -+ -+#: ../src/lib/ureport.c:582 - #, c-format - msgid "The URL '%s' does not exist (got error 404 from server)" - msgstr "URL「%s」不存在 (伺服器給予 404 錯誤)" - --#: ../src/lib/ureport.c:596 -+#: ../src/lib/ureport.c:588 - #, c-format - msgid "The server at '%s' encountered an internal error (got error 500)" - msgstr "於「%s」的伺服器遭遇內部錯誤 (得到 500 錯誤)" - --#: ../src/lib/ureport.c:602 -+#: ../src/lib/ureport.c:594 - #, c-format - msgid "The server at '%s' currently can't handle the request (got error 503)" - msgstr "「%s」的伺服器目前無法處理請求 (取得錯誤碼 503)" - - #. can't print better error message --#: ../src/lib/ureport.c:611 -+#: ../src/lib/ureport.c:603 - #, c-format - msgid "Unexpected HTTP response from '%s': %d" - msgstr "「%s」傳來未預期的 HTTP 回應:%d" - --#: ../src/lib/ureport.c:620 -+#: ../src/lib/ureport.c:612 - #, c-format - msgid "Unable to parse response from ureport server at '%s'" - msgstr "無法解析來自「%s」ureport 伺服器的回應" - --#: ../src/lib/ureport.c:630 -+#: ../src/lib/ureport.c:622 - #, c-format - msgid "The response from '%s' has invalid format" - msgstr "「%s」給予的回應為無效格式" - - #. HTTP CODE 202 means that call was successful but the response - #. has an error message --#: ../src/lib/ureport.c:636 -+#: ../src/lib/ureport.c:628 - #, c-format - msgid "Type mismatch has been detected in the response from '%s'" - msgstr "偵測到「%s」的回應中其類型並不相符" - --#: ../src/lib/ureport.c:822 ../src/plugins/reporter-rhtsupport.c:198 -+#: ../src/lib/ureport.c:818 ../src/plugins/reporter-rhtsupport.c:214 - msgid "Failed on submitting the problem" - msgstr "提交問題時失敗" - --#: ../src/lib/ureport.c:864 -+#: ../src/lib/ureport.c:860 - #, c-format - msgid "The server at '%s' responded with an error: '%s'" - msgstr "於「%s」的伺服器以錯誤回應:「%s」" -@@ -1118,21 +1148,34 @@ msgstr "無法解析追蹤資訊:%s" - msgid "Can't generate stacktrace description (no crash thread?)" - msgstr "無法產生堆疊追蹤描述 (無崩潰的執行序?)" - -+#: ../src/lib/reported_to.c:52 -+msgid "Report result label mustn't be empty string." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:58 -+msgid "Report result label mustn't contain ':' character." -+msgstr "" -+ -+#: ../src/lib/reported_to.c:141 -+#, c-format -+msgid "Ignored invalid ISO date of report result '%s'" -+msgstr "" -+ - #: ../src/lib/reporters.c:55 - msgid "Note does not contain rating" - msgstr "" - --#: ../src/lib/run_event.c:763 -+#: ../src/lib/run_event.c:876 - #, c-format - msgid "('%s' was killed by signal %u)\n" - msgstr "(「%s」被訊號 %u 截殺)\n" - --#: ../src/lib/run_event.c:765 -+#: ../src/lib/run_event.c:878 - #, c-format - msgid "('%s' completed successfully)\n" - msgstr "(「%s」成功完成)\n" - --#: ../src/lib/run_event.c:767 -+#: ../src/lib/run_event.c:880 - #, c-format - msgid "('%s' exited with %u)\n" - msgstr "(「%s」已離開,代碼 %u)\n" -@@ -1215,49 +1258,71 @@ msgid "Bugzilla account password" - msgstr "Bugzilla 帳號密碼" - - #: ../src/plugins/report_Bugzilla.xml.in.h:8 -+msgid "Restrict access" -+msgstr "限制存取" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+msgid "" -+"Restrict access to the created bugzilla ticket allowing only users from " -+"specified groups to view it (see advanced settings for more details)" -+msgstr "限制所建立的 bugzilla 申請單之存取狀況,僅讓特定群組的使用者可以檢視 (請見進階設定瞭解更多細節)" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:10 -+msgid "Groups" -+msgstr "群組" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:11 -+msgid "" -+"Restrict the access to specified groups <a href=\"https://github.com/abrt/" -+"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" -+msgstr "" -+"限制只讓特定群組存取 <a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-" -+"private-bugzilla-tickets\">?</a>" -+ -+#: ../src/plugins/report_Bugzilla.xml.in.h:12 - msgid "Bugzilla URL" - msgstr "Bugzilla URL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:9 -+#: ../src/plugins/report_Bugzilla.xml.in.h:13 - msgid "Address of Bugzilla server" - msgstr "Bugzilla " - --#: ../src/plugins/report_Bugzilla.xml.in.h:10 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 - #: ../src/plugins/report_RHTSupport.xml.in.h:7 - #: ../src/plugins/report_uReport.xml.in.h:9 - msgid "Verify SSL" - msgstr "驗證 SSL" - --#: ../src/plugins/report_Bugzilla.xml.in.h:11 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 -+#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 - #: ../src/plugins/report_RHTSupport.xml.in.h:8 - #: ../src/plugins/report_uReport.xml.in.h:10 - msgid "Check SSL key validity" - msgstr "檢查 SSL 金鑰是否有效" - --#: ../src/plugins/report_Bugzilla.xml.in.h:12 -+#: ../src/plugins/report_Bugzilla.xml.in.h:16 - msgid "Bugzilla product" - msgstr "Bugzilla 產品" - --#: ../src/plugins/report_Bugzilla.xml.in.h:13 -+#: ../src/plugins/report_Bugzilla.xml.in.h:17 - msgid "" - "Specify this only if you needed different product than specified in /etc/os-" - "release" - msgstr "若您需要的產品與 /etc/os-release 中指定的不同,才請您指定此參數" - --#: ../src/plugins/report_Bugzilla.xml.in.h:14 -+#: ../src/plugins/report_Bugzilla.xml.in.h:18 - msgid "Bugzilla product version" - msgstr "Bugzilla 產品版本" - --#: ../src/plugins/report_Bugzilla.xml.in.h:15 -+#: ../src/plugins/report_Bugzilla.xml.in.h:19 - msgid "" - "Specify this only if you needed different product version than specified in /" - "etc/os-release" - msgstr "若您需要的產品版本與 /etc/os-release 中指定的不同,才請您指定此參數" - --#: ../src/plugins/report_Bugzilla.xml.in.h:16 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 -+#: ../src/plugins/report_Bugzilla.xml.in.h:20 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 - #: ../src/plugins/report_Kerneloops.xml.in.h:5 - #: ../src/plugins/report_RHTSupport.xml.in.h:13 - #: ../src/plugins/report_Uploader.xml.in.h:10 -@@ -1266,8 +1331,8 @@ msgstr "若您需要的產品版本與 /etc/os-release 中指定的不同,才 - msgid "HTTP Proxy" - msgstr "HTTP 代理" - --#: ../src/plugins/report_Bugzilla.xml.in.h:17 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 -+#: ../src/plugins/report_Bugzilla.xml.in.h:21 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 - #: ../src/plugins/report_Kerneloops.xml.in.h:6 - #: ../src/plugins/report_RHTSupport.xml.in.h:14 - #: ../src/plugins/report_Uploader.xml.in.h:11 -@@ -1276,8 +1341,8 @@ msgstr "HTTP 代理" - msgid "Sets the proxy server to use for HTTP" - msgstr "設定 HTTP 所要使用的代理伺服器" - --#: ../src/plugins/report_Bugzilla.xml.in.h:18 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:18 -+#: ../src/plugins/report_Bugzilla.xml.in.h:22 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 - #: ../src/plugins/report_Kerneloops.xml.in.h:7 - #: ../src/plugins/report_RHTSupport.xml.in.h:15 - #: ../src/plugins/report_Uploader.xml.in.h:12 -@@ -1286,8 +1351,8 @@ msgstr "設定 HTTP 所要使用的代理伺服器" - msgid "HTTPS Proxy" - msgstr "HTTPS 代理" - --#: ../src/plugins/report_Bugzilla.xml.in.h:19 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:19 -+#: ../src/plugins/report_Bugzilla.xml.in.h:23 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 - #: ../src/plugins/report_Kerneloops.xml.in.h:8 - #: ../src/plugins/report_RHTSupport.xml.in.h:16 - #: ../src/plugins/report_Uploader.xml.in.h:13 -@@ -1296,29 +1361,6 @@ msgstr "HTTPS 代理" - msgid "Sets the proxy server to use for HTTPS" - msgstr "設定 HTTPS 所要使用的代理伺服器" - --#: ../src/plugins/report_Bugzilla.xml.in.h:20 --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:20 --msgid "Restrict access" --msgstr "限制存取" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:21 --msgid "" --"Restrict access to the created bugzilla ticket allowing only users from " --"specified groups to view it (see advanced settings for more details)" --msgstr "限制所建立的 bugzilla 申請單之存取狀況,僅讓特定群組的使用者可以檢視 (請見進階設定瞭解更多細節)" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:22 --msgid "Groups" --msgstr "群組" -- --#: ../src/plugins/report_Bugzilla.xml.in.h:23 --msgid "" --"Restrict the access to specified groups <a href=\"https://github.com/abrt/" --"abrt/wiki/FAQ#creating-private-bugzilla-tickets\">?</a>" --msgstr "" --"限制只讓特定群組存取 <a href=\"https://github.com/abrt/abrt/wiki/FAQ#creating-" --"private-bugzilla-tickets\">?</a>" -- - #: ../src/plugins/report.c:37 - msgid "" - "& [-v] --target TARGET --ticket ID FILE...\n" -@@ -1356,13 +1398,13 @@ msgid "" - msgstr "警告,私人請單群組已指定成 cmdline 引數,忽略環境變數與組態設定" - - #: ../src/plugins/reporter-bugzilla.c:173 --#: ../src/plugins/reporter-rhtsupport.c:342 -+#: ../src/plugins/reporter-rhtsupport.c:358 - #: ../src/plugins/reporter-mantisbt.c:55 - msgid "Can't continue without login" - msgstr "無法沒有登入資訊就繼續" - - #: ../src/plugins/reporter-bugzilla.c:186 --#: ../src/plugins/reporter-rhtsupport.c:355 -+#: ../src/plugins/reporter-rhtsupport.c:371 - #: ../src/plugins/reporter-mantisbt.c:70 - msgid "Can't continue without password" - msgstr "無法沒有密碼就繼續" -@@ -1374,10 +1416,10 @@ msgstr "登入 Bugzilla 於 %s" - - #: ../src/plugins/reporter-bugzilla.c:199 - msgid "Invalid password or login. Please enter your Bugzilla login:" --msgstr "無效的密碼或登入名稱。請輸入您的 Bugzilla 登入資訊:" -+msgstr "" - - #: ../src/plugins/reporter-bugzilla.c:202 --#: ../src/plugins/reporter-rhtsupport.c:369 -+#: ../src/plugins/reporter-rhtsupport.c:385 - #, c-format - msgid "Invalid password or login. Please enter the password for '%s':" - msgstr "無效的密碼或登入名稱。請輸入「%s」的密碼:" -@@ -1392,7 +1434,7 @@ msgid "" - "or:\n" - "& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" - "or:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" -+"& [-v] [-c CONFFILE]... -h DUPHASH [-p[PRODUCT]]\n" - "\n" - "Reports problem to Bugzilla.\n" - "\n" -@@ -1426,198 +1468,199 @@ msgid "" - "\n" - "If not specified, CONFFILE defaults to " - msgstr "" --"\n" --"& [-vbf] [-g GROUP-NAME]... [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d " --"DIR\n" --"或:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] FILE...\n" --"或:\n" --"& [-v] [-c CONFFILE]... [-d DIR] -t[ID] -w\n" --"或:\n" --"& [-v] [-c CONFFILE]... -h DUPHASH\n" --"\n" --"將問題回報至 Bugzilla。\n" --"\n" --"本工具會讀取 DIR,接著登入 Bugzilla,並嘗試尋找 'Whiteboard'\n" --"欄位中具備相同 abrt_hash:HEXSTRING 的臭蟲回報。\n" --"\n" --"如果找不到這樣的臭蟲報告,則建立新的臭蟲回報。DIR \n" --"的元素會儲存在臭蟲回報中,取決於類型與大小,會作為\n" --"臭蟲的部份描述或作為附件。\n" --"\n" --"否則,若有找到這樣的臭蟲,則標記為 CLOSED DUPLICATE,\n" --"本工具會追尋複本的鏈直到找到非 DUPLICATE 的臭蟲回報。\n" --"本工具會將相關資訊以新的評註附加到找到的臭蟲報告中。\n" --"\n" --"新的或修改的臭蟲回報 URL,會列印到 stdout 中,並紀錄\n" --"到 'reported_to' 元素內。\n" --"\n" --"選項 -t 會將 FILEs 上傳至 Bugzilla 中已建立的臭蟲回報中。\n" --"臭蟲 ID 則從 -d DIR 指定的目錄中擷取。\n" --"若放在 DIR 中的問題資料未曾回報至 Bugzilla,則上傳會失敗。\n" --"\n" --"選項 -tID 會將 FILEs 上傳至 Bugzilla 上的指定 ID 臭蟲回報。\n" --"-d DIR 則被忽略。\n" --"\n" --"選項 -w 會將 bugzilla 使用者加到臭蟲的 CC 寄件副本清單中。\n" --"\n" --"選項 -r 會將上次 reporter_to element 內前綴為 TRACKER_NAME \n" --"的 URL 設定至 URL 欄位中。這個選項僅在提交新臭蟲回報時才會\n" --"套用。預設值為 'ABRT Server'\n" --"\n" --"如果未特別指定,CONFFILE 預設值為 " - --#: ../src/plugins/reporter-bugzilla.c:294 --#: ../src/plugins/reporter-rhtsupport.c:472 --#: ../src/plugins/reporter-mantisbt.c:286 -+#: ../src/plugins/reporter-bugzilla.c:296 -+#: ../src/plugins/reporter-rhtsupport.c:492 -+#: ../src/plugins/reporter-mantisbt.c:284 - msgid "Configuration file (may be given many times)" - msgstr "組態檔 (可能會提供多次)" - --#: ../src/plugins/reporter-bugzilla.c:295 --#: ../src/plugins/reporter-mantisbt.c:287 -+#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-mantisbt.c:285 - msgid "Formatting file for initial comment" - msgstr "正為初次評註格式化檔案" - --#: ../src/plugins/reporter-bugzilla.c:296 --#: ../src/plugins/reporter-mantisbt.c:288 -+#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-mantisbt.c:286 - msgid "Formatting file for duplicates" - msgstr "正為重複項目格式化檔案" - --#: ../src/plugins/reporter-bugzilla.c:297 -+#: ../src/plugins/reporter-bugzilla.c:299 - msgid "Attach FILEs [to bug with this ID]" - msgstr "附加 FILE [至含有此 ID 的臭蟲報告]" - --#: ../src/plugins/reporter-bugzilla.c:298 -+#: ../src/plugins/reporter-bugzilla.c:300 - msgid "When creating bug, attach binary files too" - msgstr "當建立臭蟲回報時,亦請附加二元檔案" - --#: ../src/plugins/reporter-bugzilla.c:299 --#: ../src/plugins/reporter-rhtsupport.c:474 --#: ../src/plugins/reporter-mantisbt.c:290 -+#: ../src/plugins/reporter-bugzilla.c:301 -+#: ../src/plugins/reporter-rhtsupport.c:494 -+#: ../src/plugins/reporter-mantisbt.c:288 - msgid "Force reporting even if this problem is already reported" - msgstr "即使此問題已經回報過,仍然回報此問題" - --#: ../src/plugins/reporter-bugzilla.c:300 -+#: ../src/plugins/reporter-bugzilla.c:302 - msgid "Add bugzilla user to CC list [of bug with this ID]" - msgstr "加入 bugzilla 使用者至 [有此 ID 的臭蟲報告] 寄件副本清單" - --#: ../src/plugins/reporter-bugzilla.c:301 --#: ../src/plugins/reporter-mantisbt.c:291 -+#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-mantisbt.c:289 - msgid "Print BUG_ID which has given DUPHASH" - msgstr "列印具給定 DUPHASH 的 BUG_ID" - --#: ../src/plugins/reporter-bugzilla.c:302 --#: ../src/plugins/reporter-mantisbt.c:292 -+#: ../src/plugins/reporter-bugzilla.c:304 -+msgid "Specify a Bugzilla product (ignored without -h)" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:305 -+#: ../src/plugins/reporter-mantisbt.c:290 - msgid "A name of bug tracker for an additional URL from 'reported_to'" - msgstr "「reported_to」中額外 URL 的臭蟲追蹤器名稱" - --#: ../src/plugins/reporter-bugzilla.c:303 -+#: ../src/plugins/reporter-bugzilla.c:306 - msgid "Restrict access to this group only" - msgstr "限制僅有群組可存取" - --#: ../src/plugins/reporter-bugzilla.c:304 --#: ../src/plugins/reporter-mantisbt.c:294 -+#: ../src/plugins/reporter-bugzilla.c:307 -+#: ../src/plugins/reporter-rhtsupport.c:498 -+#: ../src/plugins/reporter-mantisbt.c:292 - msgid "Debug" - msgstr "除錯" - --#: ../src/plugins/reporter-bugzilla.c:346 -+#: ../src/plugins/reporter-bugzilla.c:351 - msgid "Looking for similar problems in bugzilla" - msgstr "查詢 bugzilla 中是否有類似問題" - --#: ../src/plugins/reporter-bugzilla.c:373 --msgid "Login is not provided by configuration. Please enter your Bugzilla login:" --msgstr "登入資訊未由組態提供。請輸入您的 Bugzilla 登入資訊:" -+#: ../src/plugins/reporter-bugzilla.c:380 -+msgid "Failed to get 'REDHAT_BUGZILLA_PRODUCT' from '/etc/os-release'." -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:383 -+msgid "Failed to read '/etc/os-release' to get Bugzilla product." -+msgstr "" - --#: ../src/plugins/reporter-bugzilla.c:379 --#: ../src/plugins/reporter-rhtsupport.c:510 -+#: ../src/plugins/reporter-bugzilla.c:394 -+#, c-format -+msgid "Using default product '%s'" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:417 -+msgid "" -+"Login is not provided by configuration. Please enter your Bugzilla login:" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:423 -+#: ../src/plugins/reporter-rhtsupport.c:532 - #, c-format - msgid "" - "Password is not provided by configuration. Please enter the password for " - "'%s':" - msgstr "密碼未由組態提供。請輸入「%s」的密碼:" - --#: ../src/plugins/reporter-bugzilla.c:398 -+#: ../src/plugins/reporter-bugzilla.c:442 - msgid "" - "Can't get Bugzilla ID because this problem has not yet been reported to " - "Bugzilla." - msgstr "無法取得 Bugzilla ID,因為此問題尚未回報至 Bugzilla。" - --#: ../src/plugins/reporter-bugzilla.c:405 -+#: ../src/plugins/reporter-bugzilla.c:449 - #, c-format - msgid "" - "This problem has been reported to Bugzilla '%s' which differs from the " - "configured Bugzilla '%s'." - msgstr "此問題尚未回報至 Bugzilla「%s」,而不是設定中的 Bugzilla「%s」。" - --#: ../src/plugins/reporter-bugzilla.c:409 -+#: ../src/plugins/reporter-bugzilla.c:453 - #, c-format - msgid "Malformed url to Bugzilla '%s'." - msgstr "格式不良的 Bugzilla「%s」URL" - --#: ../src/plugins/reporter-bugzilla.c:413 -+#: ../src/plugins/reporter-bugzilla.c:457 - #, c-format - msgid "Using Bugzilla ID '%s'" - msgstr "正使用 Bugzilla ID「%s」" - --#: ../src/plugins/reporter-bugzilla.c:447 --#: ../src/plugins/reporter-bugzilla.c:768 -+#: ../src/plugins/reporter-bugzilla.c:491 -+#: ../src/plugins/reporter-bugzilla.c:680 -+#: ../src/plugins/reporter-bugzilla.c:870 - msgid "Logging out" - msgstr "登出" - --#: ../src/plugins/reporter-bugzilla.c:498 -+#: ../src/plugins/reporter-bugzilla.c:542 - msgid "Can't determine Bugzilla Product from problem data." - msgstr "無法從問題資料判定 Bugzilla 產品。" - --#: ../src/plugins/reporter-bugzilla.c:560 --#: ../src/plugins/reporter-mantisbt.c:490 -+#: ../src/plugins/reporter-bugzilla.c:604 -+#: ../src/plugins/reporter-mantisbt.c:488 - msgid "Checking for duplicates" - msgstr "檢查是否有重複" - -+#: ../src/plugins/reporter-bugzilla.c:661 -+#, c-format -+msgid "" -+"You have requested to make your data accessible only to a specific group and " -+"this bug is a duplicate of bug: %s/%u In case of bug duplicates a new " -+"comment is added to the original bug report but access to the comments " -+"cannot be restricted to a specific group. Would you like to open a new bug " -+"report and close it as DUPLICATE of the original one? Otherwise, the bug " -+"reporting procedure will be terminated." -+msgstr "" -+ - #. Create new bug --#: ../src/plugins/reporter-bugzilla.c:606 -+#: ../src/plugins/reporter-bugzilla.c:696 - msgid "Creating a new bug" - msgstr "建立新的臭蟲回報" - --#: ../src/plugins/reporter-bugzilla.c:634 -+#: ../src/plugins/reporter-bugzilla.c:715 - msgid "Failed to create a new bug." - msgstr "建立新臭蟲回報失敗。" - --#: ../src/plugins/reporter-bugzilla.c:645 -+#: ../src/plugins/reporter-bugzilla.c:731 -+#, c-format -+msgid "Adding extra cc %s to bug report" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:740 - #, c-format - msgid "Adding External URL to bug %i" - msgstr "正加入外部 URL 至臭蟲 %i" - --#: ../src/plugins/reporter-bugzilla.c:651 -+#: ../src/plugins/reporter-bugzilla.c:746 - #, c-format - msgid "Adding attachments to bug %i" - msgstr "正加入附件至臭蟲 %i" - --#: ../src/plugins/reporter-bugzilla.c:678 --#: ../src/plugins/reporter-mantisbt.c:599 -+#: ../src/plugins/reporter-bugzilla.c:768 -+#, c-format -+msgid "Closing bug %i as duplicate of bug %i" -+msgstr "" -+ -+#: ../src/plugins/reporter-bugzilla.c:780 -+#: ../src/plugins/reporter-mantisbt.c:597 - #, c-format - msgid "Bug is already reported: %i" - msgstr "臭蟲已回報過:%i" - --#: ../src/plugins/reporter-bugzilla.c:721 -+#: ../src/plugins/reporter-bugzilla.c:823 - #, c-format - msgid "Adding %s to CC list" - msgstr "正將 %s 加入寄件副本 (CC) 清單" - --#: ../src/plugins/reporter-bugzilla.c:742 -+#: ../src/plugins/reporter-bugzilla.c:844 - #, c-format - msgid "Adding new comment to bug %d" - msgstr "正新增評註至臭蟲 %d" - --#: ../src/plugins/reporter-bugzilla.c:755 --#: ../src/plugins/reporter-mantisbt.c:649 -+#: ../src/plugins/reporter-bugzilla.c:857 -+#: ../src/plugins/reporter-mantisbt.c:647 - msgid "Attaching better backtrace" - msgstr "正附上更好的追蹤資料" - --#: ../src/plugins/reporter-bugzilla.c:761 -+#: ../src/plugins/reporter-bugzilla.c:863 - msgid "Found the same comment in the bug history, not adding a new one" - msgstr "在臭蟲歷史中尋找同樣的評註,而不是新增評註" - --#: ../src/plugins/reporter-bugzilla.c:771 -+#: ../src/plugins/reporter-bugzilla.c:873 - #, c-format - msgid "Status: %s%s%s %s/show_bug.cgi?id=%u" - msgstr "狀態:%s%s%s %s/show_bug.cgi?id=%u" -@@ -1651,7 +1694,7 @@ msgstr "" - "參數可透過 $KerneloopsReporter_SubmitURL 覆蓋。" - - #: ../src/plugins/reporter-kerneloops.c:167 --#: ../src/plugins/reporter-ureport.c:76 -+#: ../src/plugins/reporter-ureport.c:81 - msgid "Configuration file" - msgstr "組態檔" - -@@ -1681,12 +1724,12 @@ msgstr "" - msgid "Sending an email..." - msgstr "傳送電子郵件..." - --#: ../src/plugins/reporter-mailx.c:161 -+#: ../src/plugins/reporter-mailx.c:162 - #, c-format - msgid "Email was sent to: %s" - msgstr "電子郵件已送往:%s" - --#: ../src/plugins/reporter-mailx.c:183 -+#: ../src/plugins/reporter-mailx.c:184 - msgid "" - "& [-v] -d DIR [-c CONFFILE]\n" - "\n" -@@ -1700,11 +1743,11 @@ msgstr "" - "\n" - "如果不指定的話,CONFFILE 預設為 " - --#: ../src/plugins/reporter-mailx.c:204 ../src/plugins/reporter-upload.c:251 -+#: ../src/plugins/reporter-mailx.c:205 ../src/plugins/reporter-upload.c:187 - msgid "Config file" - msgstr "組態檔" - --#: ../src/plugins/reporter-mailx.c:205 -+#: ../src/plugins/reporter-mailx.c:206 - msgid "Notify only (Do not mark the report as sent)" - msgstr "僅通知 (不要將回報標記為已送出)" - -@@ -1738,34 +1781,34 @@ msgstr "被使用者取消。" - msgid "Can't open '%s' for writing. Please select another file:" - msgstr "無法開啟「%s」以寫入。請選擇其他檔案:" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was appended to %s" - msgstr "報告已附加至 %s" - --#: ../src/plugins/reporter-print.c:143 -+#: ../src/plugins/reporter-print.c:144 - #, c-format - msgid "The report was stored to %s" - msgstr "報告已儲存至 %s" - --#: ../src/plugins/reporter-rhtsupport.c:259 --#: ../src/plugins/reporter-ureport.c:261 -+#: ../src/plugins/reporter-rhtsupport.c:275 -+#: ../src/plugins/reporter-ureport.c:321 - #, c-format - msgid "Server responded with an error: '%s'" - msgstr "伺服器端以錯誤回應:「%s」" - --#: ../src/plugins/reporter-rhtsupport.c:319 -+#: ../src/plugins/reporter-rhtsupport.c:335 - msgid "Do you still want to create a RHTSupport ticket?" - msgstr "您仍然想建立 RHTSupport 的申請單嗎?" - --#: ../src/plugins/reporter-rhtsupport.c:367 -+#: ../src/plugins/reporter-rhtsupport.c:383 - msgid "Invalid password or login. Please enter your Red Hat login:" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:435 -+#: ../src/plugins/reporter-rhtsupport.c:452 - msgid "" - "\n" --"& [-v] [-c CONFFILE] -d DIR\n" -+"& [-v] [-c CONFFILE] [-F FMTFILE] -d DIR\n" - "or:\n" - "& [-v] [-c CONFFILE] [-d DIR] -t[ID] [-u -C UR_CONFFILE] FILE...\n" - "\n" -@@ -1774,77 +1817,81 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:473 -+#: ../src/plugins/reporter-rhtsupport.c:493 - msgid "Upload FILEs [to case with this ID]" - msgstr "上傳 FILEs [至含有此 ID 的案例]" - --#: ../src/plugins/reporter-rhtsupport.c:475 -+#: ../src/plugins/reporter-rhtsupport.c:495 - msgid "Submit uReport before creating a new case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:476 -+#: ../src/plugins/reporter-rhtsupport.c:496 - msgid "Configuration file for uReport" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:504 -+#: ../src/plugins/reporter-rhtsupport.c:497 -+msgid "Formatting file for a new case" -+msgstr "" -+ -+#: ../src/plugins/reporter-rhtsupport.c:526 - msgid "Login is not provided by configuration. Please enter your RHTS login:" - msgstr "登入資訊未由組態提供。請輸入您的 RHTS 登入資訊:" - --#: ../src/plugins/reporter-rhtsupport.c:573 -+#: ../src/plugins/reporter-rhtsupport.c:595 - #, c-format - msgid "Attaching '%s' to case '%s'" - msgstr "正在附加「%s」至案例「%s」" - --#: ../src/plugins/reporter-rhtsupport.c:610 -+#: ../src/plugins/reporter-rhtsupport.c:632 - msgid "Sending ABRT crash statistics data" - msgstr "" - -+#: ../src/plugins/reporter-rhtsupport.c:653 -+msgid "Can't create a temporary directory in " -+msgstr "無法建立暫存目錄於" -+ - #. Gzipping e.g. 0.5gig coredump takes a while. Let user know what we are doing - #. error msg is already logged by dd_opendir --#. Gzipping e.g. 0.5gig coredump takes a while. Let client know what we are doing --#: ../src/plugins/reporter-rhtsupport.c:621 --#: ../src/plugins/reporter-upload.c:52 -+#. Compressing e.g. 0.5gig coredump takes a while. Let client know what we are doing -+#: ../src/plugins/reporter-rhtsupport.c:722 -+#: ../src/plugins/reporter-upload.c:103 - msgid "Compressing data" - msgstr "正在壓縮資料" - --#: ../src/plugins/reporter-rhtsupport.c:656 --msgid "Can't create a temporary directory in " --msgstr "無法建立暫存目錄於" -- --#: ../src/plugins/reporter-rhtsupport.c:665 -+#: ../src/plugins/reporter-rhtsupport.c:726 - msgid "Can't create temporary file in " - msgstr "無法建立暫存檔於" - - #. Check for hints and show them if we have something --#: ../src/plugins/reporter-rhtsupport.c:676 -+#: ../src/plugins/reporter-rhtsupport.c:737 - msgid "Checking for hints" - msgstr "檢查是否有提示" - --#: ../src/plugins/reporter-rhtsupport.c:686 -+#: ../src/plugins/reporter-rhtsupport.c:747 - msgid "Creating a new case" - msgstr "正在建立新案例" - - #. How can we help user sorting out this problem? --#: ../src/plugins/reporter-rhtsupport.c:697 -+#: ../src/plugins/reporter-rhtsupport.c:758 - msgid "Can't determine RH Support Product from problem data." - msgstr "無法從問題資料判定 RH 支援產品。" - --#: ../src/plugins/reporter-rhtsupport.c:753 -+#: ../src/plugins/reporter-rhtsupport.c:814 - msgid "Linking ABRT crash statistics record with the case" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:766 -+#: ../src/plugins/reporter-rhtsupport.c:827 - #, c-format - msgid "Linking ABRT crash statistics record with contact email: '%s'" - msgstr "" - --#: ../src/plugins/reporter-rhtsupport.c:790 -+#: ../src/plugins/reporter-rhtsupport.c:851 - #, c-format - msgid "Adding comment to case '%s'" - msgstr "正添加評註至案例「%s」" - - #. Attach the tarball of -d DIR --#: ../src/plugins/reporter-rhtsupport.c:808 -+#: ../src/plugins/reporter-rhtsupport.c:869 - #, c-format - msgid "Attaching problem data to case '%s'" - msgstr "正附加問題資料至案例「%s」" -@@ -1857,45 +1904,49 @@ msgstr "可能有所相關的文件:" - msgid "Updates which possibly help: " - msgstr "可能有所幫助的更新:" - --#: ../src/plugins/reporter-upload.c:30 -+#: ../src/plugins/reporter-upload.c:29 - msgid "Can't continue without URL" - msgstr "沒有 URL 則無法繼續" - --#: ../src/plugins/reporter-upload.c:61 --msgid "" --"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" --"" --msgstr "" -- - #. Be permissive and nice, ask only once and don't check - #. the result. User can dismiss this prompt but the upload - #. may work somehow??? --#: ../src/plugins/reporter-upload.c:164 -+#: ../src/plugins/reporter-upload.c:51 - msgid "Please enter password for uploading:" - msgstr "" - - #. success --#: ../src/plugins/reporter-upload.c:181 -+#: ../src/plugins/reporter-upload.c:120 - #, c-format - msgid "Archive is created: '%s'" - msgstr "封存檔案已建立:「%s」" - --#: ../src/plugins/reporter-upload.c:222 -+#: ../src/plugins/reporter-upload.c:156 - msgid "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" -+"& [-v] -d DIR [-c CONFFILE] [-u URL] [-b FILE] [-r FILE]\n" - "\n" - "Uploads compressed tarball of problem directory DIR to URL.\n" - "If URL is not specified, creates tarball in " - msgstr "" --"& [-v] -d DIR [-c CONFFILE] [-u URL]\n" --"\n" --"將壓縮的問題目錄 DIR 其 tarball 上傳至 URL。\n" --"如果沒有指定 URL,則建立 tarball 於 " - --#: ../src/plugins/reporter-upload.c:252 -+#: ../src/plugins/reporter-upload.c:188 - msgid "Base URL to upload to" - msgstr "欲上傳至的基礎 URL" - -+#: ../src/plugins/reporter-upload.c:189 -+msgid "SSH public key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:190 -+msgid "SSH private key file" -+msgstr "" -+ -+#: ../src/plugins/reporter-upload.c:219 -+msgid "" -+"Please enter a URL (scp, ftp, etc.) where the problem data is to be exported:" -+"" -+msgstr "" -+ - #: ../src/plugins/reporter-mantisbt.c:82 - msgid "Please enter your MantisBT login:" - msgstr "" -@@ -1912,7 +1963,7 @@ msgstr "" - msgid "Invalid password or login." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:215 -+#: ../src/plugins/reporter-mantisbt.c:213 - msgid "" - "\n" - "& [-vf] [-c CONFFILE]... [-F FMTFILE] [-A FMTFILE2] -d DIR\n" -@@ -1955,48 +2006,48 @@ msgid "" - "If not specified, CONFFILE defaults to " - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:289 -+#: ../src/plugins/reporter-mantisbt.c:287 - msgid "Attach FILEs [to issue with this ID]" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:322 -+#: ../src/plugins/reporter-mantisbt.c:320 - #, c-format - msgid "Can't open problem dir '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:344 -+#: ../src/plugins/reporter-mantisbt.c:342 - msgid "Looking for similar problems in MantisBT" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:372 -+#: ../src/plugins/reporter-mantisbt.c:370 - msgid "" - "Can't get MantisBT ID because this problem has not yet been reported to " - "MantisBT." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:379 -+#: ../src/plugins/reporter-mantisbt.c:377 - #, c-format - msgid "" - "This problem has been reported to MantisBT '%s' which differs from the " - "configured MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:383 -+#: ../src/plugins/reporter-mantisbt.c:381 - #, c-format - msgid "Malformed url to MantisBT '%s'." - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:387 -+#: ../src/plugins/reporter-mantisbt.c:385 - #, c-format - msgid "Using MantisBT ID '%s'" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:395 -+#: ../src/plugins/reporter-mantisbt.c:393 - #, c-format - msgid "Attaching file '%s' to issue %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:414 -+#: ../src/plugins/reporter-mantisbt.c:412 - #, c-format - msgid "" - "This problem was already reported to MantisBT (see '%s'). Do you still want " -@@ -2004,47 +2055,47 @@ msgid "" - msgstr "" - - #. Create new issue --#: ../src/plugins/reporter-mantisbt.c:529 -+#: ../src/plugins/reporter-mantisbt.c:527 - msgid "Creating a new issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:534 -+#: ../src/plugins/reporter-mantisbt.c:532 - #, c-format - msgid "Invalid format file: %s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:538 -+#: ../src/plugins/reporter-mantisbt.c:536 - msgid "Failed to format problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:557 -+#: ../src/plugins/reporter-mantisbt.c:555 - msgid "Adding External URL to issue" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:570 -+#: ../src/plugins/reporter-mantisbt.c:568 - #, c-format - msgid "Adding attachments to issue %i" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:625 -+#: ../src/plugins/reporter-mantisbt.c:623 - #, c-format - msgid "Invalid duplicate format file: '%s" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:629 -+#: ../src/plugins/reporter-mantisbt.c:627 - msgid "Failed to format duplicate comment from problem data" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:636 -+#: ../src/plugins/reporter-mantisbt.c:634 - #, c-format - msgid "Adding new comment to issue %d" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:672 -+#: ../src/plugins/reporter-mantisbt.c:670 - msgid "Found the same comment in the issue history, not adding a new one" - msgstr "" - --#: ../src/plugins/reporter-mantisbt.c:679 -+#: ../src/plugins/reporter-mantisbt.c:677 - #, c-format - msgid "Status: %s%s%s %s/view.php?id=%u" - msgstr "" -@@ -2080,39 +2131,42 @@ msgid "CentOS Bug Tracker account password" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:8 --msgid "CentOS Bug Tracker URL" -+msgid "Restric access" - msgstr "" - - #: ../src/plugins/report_CentOSBugTracker.xml.in.h:9 -+msgid "" -+"The issue will be accessible only to users with access to 'Pivate Issues'" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:10 -+msgid "CentOS Bug Tracker URL" -+msgstr "" -+ -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:11 - msgid "Address of CentOS Bug Tracker server" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:12 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 - msgid "CentOS Bug Tracker project" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:13 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 - msgid "" - "Specify this only if you needed different project than specified in /etc/os-" - "release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:14 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:16 - msgid "CentOS Bug Tracker project version" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:15 -+#: ../src/plugins/report_CentOSBugTracker.xml.in.h:17 - msgid "" - "Specify this only if you needed different project version than specified in /" - "etc/os-release" - msgstr "" - --#: ../src/plugins/report_CentOSBugTracker.xml.in.h:21 --msgid "" --"Restrict access to the created CentOS Bug Tracker issue allowing only users " --"from specified groups to view it (see advanced settings for more details)" --msgstr "" -- - #: ../src/plugins/report_Kerneloops.xml.in.h:1 - msgid "Kerneloops.org" - msgstr "Kerneloops.org" -@@ -2276,6 +2330,22 @@ msgstr "FTP 代理" - msgid "Sets the proxy server to use for FTP" - msgstr "設定 FTP 所要使用的代理伺服器" - -+#: ../src/plugins/report_Uploader.xml.in.h:16 -+msgid "SSH Public key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:17 -+msgid "Use this field to specify SSH public keyfile" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:18 -+msgid "SSH Private key file" -+msgstr "" -+ -+#: ../src/plugins/report_Uploader.xml.in.h:19 -+msgid "Use this field to specify SSH private keyfile" -+msgstr "" -+ - #: ../src/plugins/report_uReport.xml.in.h:1 - msgid "uReport" - msgstr "uReport" -@@ -2341,7 +2411,7 @@ msgstr "Bug %i 已 CLOSED (關閉),不過沒有 RESOLUTION (解決方案)" - msgid "Bug %i is CLOSED as DUPLICATE, but it has no DUP_ID" - msgstr "Bug %i 已 CLOSED (關閉) 為 DUPLICATE (重複項目),不過它沒有 DUP_ID" - --#: ../src/plugins/rhbz.c:555 -+#: ../src/plugins/rhbz.c:583 - msgid "" - "A private ticket creation has been requested, but no groups were specified, " - "please see https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-" -@@ -2350,17 +2420,17 @@ msgstr "" - "已請求建立私人申請單,但未指定群組,請見 https://github.com/abrt/abrt/wiki/FAQ#creating-private-" - "bugzilla-tickets 瞭解更多資訊" - --#: ../src/plugins/rhbz.c:576 -+#: ../src/plugins/rhbz.c:604 - #, c-format - msgid "New bug id: %i" - msgstr "新的臭蟲 ID:%i" - --#: ../src/plugins/rhbz.c:696 -+#: ../src/plugins/rhbz.c:724 - #, c-format - msgid "Bugzilla couldn't find parent of bug %d" - msgstr "Bugzilla 找不到臭蟲 %d 的親代" - --#: ../src/plugins/rhbz.c:819 -+#: ../src/plugins/rhbz.c:870 - msgid "Bug.search(quicksearch) return value did not contain member 'bugs'" - msgstr "Bug.search(quicksearch) 回傳值未包含成員 'bugs'" - -@@ -2553,65 +2623,89 @@ msgstr "" - msgid "Failed to get project id from name" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:70 -+#: ../src/plugins/reporter-ureport.c:75 - msgid "Specify server URL" - msgstr "指定伺服器 URL" - --#: ../src/plugins/reporter-ureport.c:72 -+#: ../src/plugins/reporter-ureport.c:77 - msgid "Allow insecure connection to ureport server" - msgstr "允許對 ureport 伺服器的不安全連線" - --#: ../src/plugins/reporter-ureport.c:73 -+#: ../src/plugins/reporter-ureport.c:78 - msgid "Use client authentication" - msgstr "使用者客戶端身份核對" - --#: ../src/plugins/reporter-ureport.c:74 -+#: ../src/plugins/reporter-ureport.c:79 - msgid "Use HTTP Authentication" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:75 -+#: ../src/plugins/reporter-ureport.c:80 - msgid "Additional files included in 'auth' key" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:78 -+#: ../src/plugins/reporter-ureport.c:83 - msgid "bthash of uReport to attach (conflicts with -A)" - msgstr "要加入為附件的 uReport 之 bthash (與 -A 衝突)" - --#: ../src/plugins/reporter-ureport.c:80 -+#: ../src/plugins/reporter-ureport.c:85 - msgid "attach to a bthash from reported_to (conflicts with -a)" - msgstr "從 reported_to 附加到 bthash (與 -a 衝突)" - --#: ../src/plugins/reporter-ureport.c:82 -+#: ../src/plugins/reporter-ureport.c:87 - msgid "contact e-mail address (requires -a|-A, conflicts with -E)" - msgstr "聯絡人電子郵件位址 (需要 -a|-A,但與 -E 衝突)" - --#: ../src/plugins/reporter-ureport.c:84 -+#: ../src/plugins/reporter-ureport.c:89 - msgid "" - "contact e-mail address from environment or configuration file (requires -a|-" - "A, conflicts with -e)" - msgstr "取自環境變數或組態檔的聯絡人電子郵件位址 (需要 -a|-A,與 -e 衝突)" - --#: ../src/plugins/reporter-ureport.c:86 -+#: ../src/plugins/reporter-ureport.c:91 - msgid "attach RHBZ bug (requires -a|-A, conflicts with -B)" - msgstr "附上 RHBZ 臭蟲 (需要 -a|-A,但與 -B 衝突)" - --#: ../src/plugins/reporter-ureport.c:88 -+#: ../src/plugins/reporter-ureport.c:93 - msgid "" - "attach last RHBZ bug from reported_to (requires -a|-A, conflicts with -b)" - msgstr "附上上次 reported_to 中的 RHBZ 臭蟲回報 (需要 -a|-A,但與 -b 衝突)" - --#: ../src/plugins/reporter-ureport.c:90 -+#: ../src/plugins/reporter-ureport.c:95 - msgid "attach short text (requires -a|-A, conflicts with -D)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:92 -+#: ../src/plugins/reporter-ureport.c:97 - msgid "attach short text from comment (requires -a|-A, conflicts with -d)" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:97 -+#: ../src/plugins/reporter-ureport.c:101 -+msgid "attach value (requires -a|-A and -T, conflicts with -L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:103 -+msgid "" -+"attach data of FIELD [URL] of the last report result (requires -a|-A, -r and " -+"-T, conflicts with -l)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:106 -+msgid "" -+"use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with " -+"-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:108 -+msgid "" -+"attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)" -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:113 - msgid "" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS]\n" - " [-A -a bthash -B -b bug-id -E -e email -O -o comment] [-d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -r REPORT_RESULT_TYPE -L RESULT_FIELD] [-" -+"d DIR]\n" -+" [-A -a bthash -T ATTACHMENT_TYPE -l DATA] [-d DIR]\n" - "& [-v] [-c FILE] [-u URL] [-k] [-t SOURCE] [-h CREDENTIALS] [-i AUTH_ITEMS] " - "[-d DIR]\n" - "\n" -@@ -2620,51 +2714,61 @@ msgid "" - "Reads the default configuration from " - msgstr "" - --#: ../src/plugins/reporter-ureport.c:153 -+#: ../src/plugins/reporter-ureport.c:188 - msgid "This problem does not have an uReport assigned." - msgstr "此問題沒有指派 uReport。" - --#: ../src/plugins/reporter-ureport.c:166 -+#: ../src/plugins/reporter-ureport.c:201 - msgid "This problem has not been reported to Bugzilla." - msgstr "此問題尚未回報至 Bugzilla。" - --#: ../src/plugins/reporter-ureport.c:170 -+#: ../src/plugins/reporter-ureport.c:205 - #, c-format - msgid "Unable to find bug ID in bugzilla URL '%s'" - msgstr "無法於 bugzilla URL「%s」中找到臭蟲 ID。" - --#: ../src/plugins/reporter-ureport.c:175 -+#: ../src/plugins/reporter-ureport.c:210 - #, c-format - msgid "Unable to parse bug ID from bugzilla URL '%s'" - msgstr "無法從 bugzilla URL「%s」解析臭蟲 ID。" - --#: ../src/plugins/reporter-ureport.c:184 -+#: ../src/plugins/reporter-ureport.c:219 - msgid "Cannot attach comment from 'comment' file" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:186 -+#: ../src/plugins/reporter-ureport.c:221 - msgid "'comment' file is empty" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:197 -+#: ../src/plugins/reporter-ureport.c:229 -+#, c-format -+msgid "This problem has not been reported to '%s'." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:234 -+#, c-format -+msgid "The report result '%s' is missing URL." -+msgstr "" -+ -+#: ../src/plugins/reporter-ureport.c:251 - msgid "" - "Neither environment variable 'uReport_ContactEmail' nor configuration option " - "'ContactEmail' is set" - msgstr "環境變數「uReport_ContactEmail」與組態選項「ContactEmail」皆未設定" - --#: ../src/plugins/reporter-ureport.c:203 -+#: ../src/plugins/reporter-ureport.c:257 - msgid "You need to specify bug ID, contact email, comment or all of them" - msgstr "" - --#: ../src/plugins/reporter-ureport.c:227 -+#: ../src/plugins/reporter-ureport.c:287 - msgid "You need to specify bthash of the uReport to attach." - msgstr "您需要指定要加入附件的 uReport 其 bthash。 " - --#: ../src/plugins/reporter-ureport.c:232 -+#: ../src/plugins/reporter-ureport.c:292 - msgid "Not uploading an empty uReport" - msgstr "不上傳空白 uReport" - --#: ../src/plugins/reporter-ureport.c:253 -+#: ../src/plugins/reporter-ureport.c:313 - msgid "This problem has already been reported." - msgstr "此問題已被回報過。" - --- -2.5.0 - diff --git a/0005-Fix-minor-typos.patch b/0005-Fix-minor-typos.patch deleted file mode 100644 index 2904021..0000000 --- a/0005-Fix-minor-typos.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 7f7ca8e4868ce7a6ac4dfa2a3f54c7df66b7f925 Mon Sep 17 00:00:00 2001 -From: Yuri Chornoivan -Date: Fri, 12 Feb 2016 22:58:13 +0200 -Subject: [PATCH] Fix minor typos - ---- - src/plugins/report_CentOSBugTracker.xml.in | 4 ++-- - src/plugins/reporter-ureport.c | 2 +- - 2 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/plugins/report_CentOSBugTracker.xml.in b/src/plugins/report_CentOSBugTracker.xml.in -index 0e2adbe..89bfc8b 100644 ---- a/src/plugins/report_CentOSBugTracker.xml.in -+++ b/src/plugins/report_CentOSBugTracker.xml.in -@@ -25,8 +25,8 @@ - <_description>CentOS Bug Tracker account password - - - -diff --git a/src/plugins/reporter-ureport.c b/src/plugins/reporter-ureport.c -index f49ebc8..52a05f5 100644 ---- a/src/plugins/reporter-ureport.c -+++ b/src/plugins/reporter-ureport.c -@@ -105,7 +105,7 @@ int main(int argc, char **argv) - OPT_STRING('r', "report-result-type", &report_result_type, "REPORT_RESULT_TYPE", - _("use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with -L)")), - OPT_STRING('T', "type", &attach_type, "ATTACHMENT_TYPE", -- _("attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)")), -+ _("attach DATA as ureport attachment ATTACHMENT_TYPE (used only with -l|-L)")), - OPT_END(), - }; - --- -2.5.0 - diff --git a/0006-wizard-fix-the-broken-widget-expansion.patch b/0006-wizard-fix-the-broken-widget-expansion.patch deleted file mode 100644 index 97eef3c..0000000 --- a/0006-wizard-fix-the-broken-widget-expansion.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 75794fcb6ee9c52930ff852eed3caa0520bac007 Mon Sep 17 00:00:00 2001 -From: Matej Habrnal -Date: Thu, 18 Feb 2016 14:51:46 +0100 -Subject: [PATCH] wizard: fix the broken widget expansion - -GtkScrolledWindow widget is no longer expanded automatically. - -Fixes #407 - -Signed-off-by: Matej Habrnal ---- - src/gui-wizard-gtk/wizard.glade | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/gui-wizard-gtk/wizard.glade b/src/gui-wizard-gtk/wizard.glade -index e1d2183..d79cc40 100644 ---- a/src/gui-wizard-gtk/wizard.glade -+++ b/src/gui-wizard-gtk/wizard.glade -@@ -155,6 +155,8 @@ - - True - True -+ True -+ True - in - - --- -2.5.0 - diff --git a/libreport.spec b/libreport.spec index 7b40ca3..ea612cb 100644 --- a/libreport.spec +++ b/libreport.spec @@ -6,8 +6,8 @@ Summary: Generic library for reporting various problems Name: libreport -Version: 2.6.4 -Release: 3%{?dist} +Version: 2.7.0 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: https://abrt.readthedocs.org/ @@ -16,12 +16,6 @@ Source1: autogen.sh # git format-patch %%{Version} -N -M --topo-order # i=0; for p in `ls 0*.patch`; do printf "Patch%04d: %s\n" $i $p; ((i++)); done -Patch0001: 0001-wizard-remove-the-code-correcting-Bugzilla-groups.patch -Patch0002: 0002-wizard-fix-the-broken-Show-log-widget.patch -#Patch0003: 0003-translations-update-zanata-configuration.patch -Patch0004: 0004-Translation-updates.patch -Patch0005: 0005-Fix-minor-typos.patch -Patch0006: 0006-wizard-fix-the-broken-widget-expansion.patch # git is need for '%%autosetup -S git' which automatically applies all the # patches above. Please, be aware that the patches must be generated @@ -47,6 +41,7 @@ BuildRequires: newt-devel BuildRequires: libproxy-devel BuildRequires: satyr-devel >= %{satyr_ver} +BuildRequires: glibc-all-langpacks BuildRequires: xmlrpc-c-devel BuildRequires: doxygen BuildRequires: systemd-devel @@ -357,6 +352,7 @@ find $RPM_BUILD_ROOT -name "*.py[co]" -delete find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/events.d/ mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/events/ +mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/workflows.d/ mkdir -p $RPM_BUILD_ROOT/%{_datadir}/%{name}/events/ mkdir -p $RPM_BUILD_ROOT/%{_datadir}/%{name}/workflows/ @@ -387,6 +383,7 @@ rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_RHELvmcore.xml rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_RHELxorg.xml rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_RHELLibreport.xml rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_RHELJava.xml +rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_uReport.xml rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_AnacondaRHEL.xml rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_AnacondaRHELBugzilla.xml rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_RHELBugzillaCCpp.xml @@ -397,8 +394,10 @@ rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_RHELBugzillaXorg. rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_RHELBugzillaLibreport.xml rm -f $RPM_BUILD_ROOT/%{_datadir}/libreport/workflows/workflow_RHELBugzillaJava.xml rm -f $RPM_BUILD_ROOT/%{_sysconfdir}/libreport/workflows.d/report_rhel.conf +rm -f $RPM_BUILD_ROOT/%{_sysconfdir}/libreport/workflows.d/report_uReport.conf rm -f $RPM_BUILD_ROOT/%{_sysconfdir}/libreport/workflows.d/report_rhel_bugzilla.conf rm -f $RPM_BUILD_ROOT%{_mandir}/man5/report_rhel.conf.5 +rm -f $RPM_BUILD_ROOT%{_mandir}/man5/report_uReport.conf.5 rm -f $RPM_BUILD_ROOT%{_mandir}/man5/report_rhel_bugzilla.conf.5 %endif @@ -461,6 +460,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %dir %{_sysconfdir}/%{name}/ %dir %{_sysconfdir}/%{name}/events.d/ %dir %{_sysconfdir}/%{name}/events/ +%dir %{_sysconfdir}/%{name}/workflows.d/ %dir %{_datadir}/%{name}/events/ %dir %{_datadir}/%{name}/workflows/ %dir %{_sysconfdir}/%{name}/plugins/ @@ -703,8 +703,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/%{name}/workflows/workflow_RHELxorg.xml %{_datadir}/%{name}/workflows/workflow_RHELLibreport.xml %{_datadir}/%{name}/workflows/workflow_RHELJava.xml +%{_datadir}/%{name}/workflows/workflow_uReport.xml %config(noreplace) %{_sysconfdir}/libreport/workflows.d/report_rhel.conf +%config(noreplace) %{_sysconfdir}/libreport/workflows.d/report_uReport.conf %{_mandir}/man5/report_rhel.conf.5.* +%{_mandir}/man5/report_uReport.conf.5.* %files rhel-bugzilla %defattr(-,root,root,-) @@ -743,6 +746,35 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog +* Fri Apr 08 2016 Matej Habrnal 2.7.0-1 +- ignored words: update ignored words +- mailx: use problem report api to define an emais' content +- augeas: trim spaces before key value +- spec: add workflows.d to filesystem package +- mailx: stop creating dead.letter on mailx failures +- workflows: add comments to ambiguous functions +- workflows: publish the function loading configuration +- augeas: exclude mantisbt format configurations +- reporter-mantisbt: add missing '=' to conf file +- curl: fix typo Ingoring -> Ignoring +- rhtsupport: attach all dump dir's element to a new case +- rhtsupport: add pkg_vendor, reproducer and reproducible to description +- report client: add silent mode to clean_up() +- doc: add documentation for requires-details attribute +- rhtsupport: Discourage users from reporting in non Red Hat stuff +- rhtsupport: Discourage users from opening one-shot crashes +- report-gtk: Require Reproducer for RHTSupport +- Add workflow for RHEL anonymous report +- spec: add workflow for RHEL anonymous report files +- wizard: fix the broken widget expansion +- dd: add documentation of dd_create_skeleton +- workflow: add extern C to the header file +- Fix minor typos +- Translation updates +- translations: update zanata configuration +- wizard: fix the broken "Show log" widget +- wizard: remove the code correcting Bugzilla groups + * Thu Feb 18 2016 Matej Habrnal 2.6.4-3 - Translation updates - wizard: fix the broken widget expansion @@ -751,7 +783,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - wizard: fix the broken "Show log" widget - Resolves: #1303326 -* Thu Feb 02 2016 Matej Habrnal 2.6.4-1 +* Tue Feb 02 2016 Matej Habrnal 2.6.4-1 - doc: add option -o and -O into reporter-ureport man page - rhtsupport: use problme report API to create description - bugzilla: make the event configurable diff --git a/sources b/sources index 902d50d..d3a070f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -155649f1f87bef8fe06ff1830f60788d libreport-2.6.4.tar.gz +7354fa562de18ab690127a4ff7d5601e libreport-2.7.0.tar.gz